/*
Theme Name: GeneratePress Child
Theme URI: https://generatepress.com
Description: Современная child-тема для GeneratePress с кастомным адаптивным хедером
Author: Your Name
Author URI: https://yourwebsite.com
Template: generatepress
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: generatepress-child
*/

/* ========================================
   КАСТОМНЫЙ ХЕДЕР
   ======================================== */

.custom-header {
	background: #ffffff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	position: sticky;
	top: 0;
	z-index: 1000;
	transition: all 0.3s ease;
}

.custom-header-container {
	padding: 15px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

/* ========================================
   ЛОГОТИП
   ======================================== */

.custom-logo {
	flex-shrink: 0;
}

.custom-logo a {
	display: flex;
	align-items: center;
	text-decoration: none;
	font-size: 24px;
	font-weight: 700;
	color: #0c4e3e;
	transition: color 0.3s ease;
}

.custom-logo a:hover {
	color: #D19640;
}

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

/* ========================================
   МЕНЮ (ЦЕНТР)
   ======================================== */

/* Контейнеры */
.custom-nav {
	flex: 1;
	display: flex;
	justify-content: center;
}

.custom-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 30px;
	align-items: center;
}

.custom-menu li {
	position: relative;
}

/* Ссылки */
.custom-menu a {
	position: relative;
	display: inline-block;
	text-decoration: none;
	color: #0c4e3e;
	font-size: 16px;
	font-weight: 500;
	padding: 8px 0; /* убрал боковой паддинг – underline ровнее */
	transition: color 0.3s ease;
}

/* Анимированное подчеркивание */
.custom-menu a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0%;
	height: 2px;
	background-color: #D19640;
	transition: width 0.3s ease;
}

/* Hover underline */
.custom-menu a:hover::after {
	width: 100%;
}

.custom-menu a:hover {
	color: #D19640;
}

/* Active underline (текущая страница) */
.custom-menu .current-menu-item > a::after {
	width: 100%;
}

.custom-menu .current-menu-item > a {
	color: #D19640;
}

/* ----- Подменю ----- */

.custom-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: #ffffff;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	padding: 10px 0;
	margin-top: 12px;

	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition: all 0.25s ease;

	list-style: none;
	z-index: 100;
}

/* Появление подменю */
.custom-menu li:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* стили подменю */
.custom-menu .sub-menu a {
	padding: 10px 20px;
	color: #0c4e3e;
	font-size: 15px;
	display: block;
}

/* Hover в подменю → underline слева */
.custom-menu .sub-menu a::after {
	left: 20px;
	bottom: 6px;
}

/* Optional: небольшое изменение цвета */
.custom-menu .sub-menu a:hover {
	color: #D19640;
}


/* ========================================
   ПРАВЫЙ БЛОК (Поиск, Корзина, CTA)
   ======================================== */

.custom-actions {
	display: flex;
	align-items: center;
	gap: 15px;
	flex-shrink: 0;
}

/* Поиск */
.custom-search {
	position: relative;
}

.search-toggle {
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.search-toggle:hover {
	background: rgba(209, 150, 64, 0.1);
}

.search-toggle svg {
	width: 22px;
	height: 22px;
	fill: #0c4e3e;
}

.search-form {
	position: absolute;
	top: calc(100% + 15px);
	right: 0;
	background: #ffffff;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	border-radius: 8px;
	padding: 15px;
	min-width: 300px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
}

.search-form.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.search-form input[type="search"] {
	width: 85%;
	padding: 12px 15px;
	border: none;
	border-radius: 6px;
	font-size: 16px;
	background-color: transparent;
	transition: border-color 0.3s ease;
}

.search-form input[type="search"]:focus {
	outline: none;
	border-color: #D19640;
}

/* Корзина */
.custom-cart {
	position: relative;
}

.cart-toggle {
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.3s ease;
	position: relative;
}

.cart-toggle:hover {
	background: rgba(240, 197, 113, 0.1);
}

.cart-toggle svg {
	width: 22px;
	height: 22px;
	fill: #0c4e3e;
}

.cart-count {
	position: absolute;
	top: 2px;
	right: 2px;
	background: #e74c3c;
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* CTA Кнопка */
.custom-cta {
	background: linear-gradient(135deg, #0c4e3e, #0c4e3e);
	color: #ffffff;
	padding: 12px 25px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.custom-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
	color: #ffffff;
}

/* ========================================
   МОБИЛЬНОЕ МЕНЮ
   ======================================== */

.burger-menu {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 8px;
	border-radius: 6px;
	transition: all 0.3s ease;
}

.burger-menu:hover {
	background: rgba(52, 152, 219, 0.1);
}

.burger-menu span {
	width: 25px;
	height: 3px;
	background: #0c4e3e;
	border-radius: 3px;
	transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active span:nth-child(2) {
	opacity: 0;
}

.burger-menu.active span:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}

/* Кнопка закрытия мобильного меню */
.menu-close {
	display: none;
	position: absolute;
	top: 20px;
	right: 20px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 8px;
	border-radius: 50%;
	transition: all 0.3s ease;
	z-index: 10;
}

.menu-close:hover {
	background: rgba(52, 152, 219, 0.1);
}

.menu-close svg {
	fill: #0c4e3e;
	display: block;
}

.menu-close:focus {
	outline: 2px solid #0c4e3e;
	outline-offset: 2px;
}

/* ========================================
   АДАПТИВНОСТЬ
   ======================================== */

@media (max-width: 992px) {
	.burger-menu {
		display: flex;
		order: 2;
	}

	.custom-nav {
		position: fixed;
		top: 0;
		left: -100%;
		width: 300px;
		height: 100vh;
		background: #ffffff;
		box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
		transition: left 0.3s ease;
		z-index: 1001;
		overflow-y: auto;
	}

	.custom-nav.active {
		left: 0;
	}

	.custom-nav.active .menu-close {
		display: block;
	}

	.custom-menu {
		flex-direction: column;
		gap: 0;
		padding: 80px 0 20px;
		width: 100%;
	}

	.custom-menu li {
		width: 100%;
	}

	.custom-menu a {
		padding: 15px 25px;
		border-radius: 0;
		width: 100%;
	}

	.custom-menu .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		margin: 0;
		padding: 0;
		background: rgba(52, 152, 219, 0.05);
		display: none;
	}

	.custom-menu li.menu-item-has-children>a::after {
		content: '+';
		float: right;
		font-size: 20px;
		transition: transform 0.3s ease;
	}

	.custom-menu li.menu-item-has-children.active>a::after {
		transform: rotate(45deg);
	}

	.custom-menu li.menu-item-has-children.active>.sub-menu {
		display: block;
	}

	.custom-menu .sub-menu a {
		padding-left: 40px;
	}

	/* Оверлей для мобильного меню */
	.menu-overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.5);
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
		z-index: 999;
	}

	.menu-overlay.active {
		opacity: 1;
		visibility: visible;
	}

	.custom-header-container {
		gap: 15px;
	}
}

@media (max-width: 576px) {
	.custom-logo {
		order: 0;
		margin-right: auto;
	}

	.custom-header-container {
		padding: 12px 15px;
	}

	.custom-logo a {
		font-size: 20px;
	}

	.custom-logo img {
		max-height: 40px;
	}

	.custom-actions {
		gap: 10px;
	}

	.custom-cta {
		padding: 10px 18px;
		font-size: 16px;
	}

	.search-form {
min-width: 350px;
    right: -115px;
	}

	.custom-nav {
		width: 280px;
		order: 1;
	}
}

/* ========================================
   ДОПОЛНИТЕЛЬНЫЕ СТИЛИ
   ======================================== */

/* Анимация появления */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.custom-header {
	animation: fadeIn 0.5s ease;
}

/* Липкий хедер эффект */
.custom-header.scrolled {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

/* Accessibility */
.custom-menu a:focus,
.search-toggle:focus,
.cart-toggle:focus,
.custom-cta:focus,
.burger-menu:focus {
	outline: 2px solid #0c4e3e;
	outline-offset: 2px;
}

/* ========================================
   AJAX ПОИСК
   ======================================== */

/* Контейнер формы поиска */
.ajax-search-container {
	position: relative;
	width: 100%;
}

/* Форма поиска */
.ajax-search-form {
	position: relative;
	display: flex;
	align-items: center;
}

.ajax-search-input-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	background: #f8f9fa;
	border-radius: 8px;
	overflow: hidden;
	border: 2px solid transparent;
	transition: all 0.3s ease;
}

.ajax-search-input-wrapper:focus-within {
	border-color: #0c4e3e;
	box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
}

.ajax-search-input {
	width: 100%;
	padding: 12px 50px 12px 15px;
	border: none;
	background: transparent;
	font-size: 15px;
	color: #0c4e3e;
	outline: none;
}

.ajax-search-input::placeholder {
	color: #95a5a6;
}

.ajax-search-submit {
	position: absolute;
	right: 5px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	transition: all 0.3s ease;
}

.ajax-search-submit:hover {
	background: rgba(52, 152, 219, 0.1);
}

.ajax-search-submit svg {
	width: 20px;
	height: 20px;
	fill: #0c4e3e;
}

/* Результаты поиска */
.ajax-search-results {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	right: 0;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
	max-height: 500px;
	overflow-y: auto;
	z-index: 1000;
	animation: slideDown 0.2s ease;
}

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

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Список результатов */
.ajax-results-list {
	padding: 10px;
}

/* Элемент результата */
.ajax-result-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 12px;
	border-radius: 8px;
	text-decoration: none;
	color: #0c4e3e;
	transition: all 0.2s ease;
	border: 1px solid transparent;
}

.ajax-result-item:hover {
	background: rgba(52, 152, 219, 0.05);
	border-color: rgba(52, 152, 219, 0.2);
	transform: translateX(5px);
}

.ajax-result-image {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	border-radius: 6px;
	overflow: hidden;
	background: #f8f9fa;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ajax-result-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ajax-result-content {
	flex: 1;
	min-width: 0;
}

.ajax-result-title {
	font-size: 15px;
	font-weight: 600;
	color: #0c4e3e;
	margin: 0 0 5px 0;
	line-height: 1.4;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.ajax-result-price {
	font-size: 14px;
	font-weight: 600;
	color: #0c4e3e;
}

/* Кнопка "Посмотреть все результаты" */
.ajax-view-all {
	display: block;
	text-align: center;
	padding: 15px;
	background: rgba(52, 152, 219, 0.05);
	color: #0c4e3e;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	border-radius: 0 0 12px 12px;
	transition: all 0.3s ease;
}

.ajax-view-all:hover {
	background: rgba(226, 130, 52, 0.1);
	color: #0c4e3e;
}

/* Сообщения */
.ajax-loading,
.ajax-no-results,
.ajax-error {
	padding: 30px 20px;
	text-align: center;
	color: #7f8c8d;
	font-size: 15px;
}

.ajax-loading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.ajax-loading .spinner {
	width: 18px;
	height: 18px;
	border: 3px solid rgba(52, 152, 219, 0.2);
	border-top-color: #0c4e3e;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.ajax-error {
	color: #e74c3c;
}

.ajax-no-results {
	color: #95a5a6;
}

/* Скроллбар для результатов */
.ajax-search-results::-webkit-scrollbar {
	width: 8px;
}

.ajax-search-results::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 0 12px 12px 0;
}

.ajax-search-results::-webkit-scrollbar-thumb {
	background: #cbd5e0;
	border-radius: 10px;
}

.ajax-search-results::-webkit-scrollbar-thumb:hover {
	background: #0c4e3e;
}

/* ========================================
   АДАПТИВНОСТЬ ДЛЯ AJAX ПОИСКА
   ======================================== */

@media (max-width: 576px) {
	.ajax-search-results {
		max-height: 400px;
		border-radius: 10px;
	}

	.ajax-result-item {
		gap: 10px;
		padding: 10px;
	}

	.ajax-result-image {
		width: 50px;
		height: 50px;
	}

	.ajax-result-title {
		font-size: 14px;
	}

	.ajax-result-price {
		font-size: 13px;
	}

	.ajax-view-all {
		padding: 12px;
		font-size: 13px;
	}
}

/* ///////// */
.gb-element-ce4b93b1 {
	background: radial-gradient(circle at center, rgba(52, 152, 219, 0.1) 0%, rgba(52, 152, 219, 0.1) 100%);
	filter: saturate(180%) brightness(0.9);
}
a.added_to_cart.wc-forward {
  display: none;
}
.wfc-open-cart-button {
  align-items: center!important;
  -webkit-appearance: none!important;
  -moz-appearance: none!important;
  appearance: none!important;
  border: none!important;
  box-shadow: none!important;
  display: flex!important;
  height: -moz-fit-content!important;
  height: auto!important;
  justify-content: center!important;
  min-height: auto!important;
  opacity: 1!important;
  position: static!important;
  right: 30px;
  text-decoration: none !important;
  transition: .4s;
  width: auto!important;
  z-index: 999998;
  min-height: auto!important;
}
a#wfc-open-cart-button {
  display: none!important;
}
/* ///////// */

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

@media (min-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.category-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.category-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.category-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    transition: background 0.3s ease;
}

.category-card:hover .category-image::before {
    background: rgba(0, 0, 0, 0.2);
}

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

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

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 30px 20px 20px;
    z-index: 2;
}

.category-title {
    color: #ffffff;
    font-size: 28px;
    font-weight: 600;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.no-categories {
    text-align: center;
    padding: 40px;
    font-size: 18px;
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .category-image {
        height: 250px;
    }
    
    .category-title {
        font-size: 24px;
    }
}

@media (min-width: 1200px) {
    .categories-grid {
        gap: 30px;
    }
}
/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    position: relative;
}

/* Left Side - Image */
.hero-image {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 1s ease-out;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-section:hover .hero-img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.1), transparent);
    pointer-events: none;
}

/* Right Side - Content */
.hero-content {
    background: linear-gradient(135deg, #E8A75D 0%, #e28234 100%);
    display: flex;
    align-items: center;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

/* .hero-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
} */

.content-wrapper {
    position: relative;
    z-index: 1;
    max-width: 600px;
    animation: slideInRight 0.8s ease-out;
}

/* Title */
.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Text Content */
.hero-text {
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 12px;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.hero-text p:nth-child(1) { animation-delay: 0.5s; }
.hero-text p:nth-child(2) { animation-delay: 0.6s; }
.hero-text p:nth-child(3) { animation-delay: 0.7s; }
.hero-text p:nth-child(4) { animation-delay: 0.8s; }
.hero-text p:nth-child(5) { animation-delay: 0.9s; }

/* Button */
.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.95);
    color: #e28234;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out 0.6s both;
    position: relative;
    overflow: hidden;
}

.hero-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(232, 167, 93, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-button:hover::before {
    width: 300px;
    height: 300px;
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #ffffff;
}

.hero-button svg {
    transition: transform 0.3s ease;
}

.hero-button:hover svg {
    transform: translateX(5px);
}

.hero-button span {
    position: relative;
    z-index: 1;
}

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

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

@keyframes zoomIn {
    from {
        transform: scale(1.2);
    }
    to {
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        padding: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .hero-image {
        min-height: 400px;
    }
    
    .hero-content {
        padding: 50px 30px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .hero-text {
        margin-bottom: 30px;
    }
    
    .hero-text p {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
    
    .hero-button {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-image {
        min-height: 300px;
    }
    
    .hero-content {
        padding: 40px 20px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-text p {
        font-size: 0.9rem;
    }
    
    .hero-button {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
.block-title {
	font-size: clamp(1.5rem, 1.2857rem + 1.0714vw, 2.5rem);
	font-weight: 700;
	text-align: center;
	margin-bottom: clamp(1rem, 0.7857rem + 0.7143vw, 2rem);
	color: #0c4e3e;
}
.p-l {
	padding: 0 clamp(1rem, 0.9393rem + 0.2589vw, 1.25rem);
}
.products_front .woocommerce ul.products {
	  grid-template-columns: repeat(4, 1fr) !important;
}
@media (max-width: 768px) {
	.products_front .woocommerce ul.products {
		  grid-template-columns: repeat(2, 1fr) !important;
	}
}
.m-w {
	max-width: 1400px;
	margin: 0 auto;
}
.mb {
	margin-bottom: clamp(2.5rem, 2.1966rem + 1.2945vw, 3.75rem);
}
.front-page-block {
  width: 100%;
}