/* Modern CSS Variables */
:root {
	--primary-purple: #7c3aed;
	--primary-purple-dark: #5b21b6;
	--primary-purple-light: #a78bfa;
	--primary-yellow: #fbbf24;
	--primary-yellow-dark: #f59e0b;
	--primary-yellow-light: #fde68a;
	--white: #ffffff;
	--gray-50: #f9fafb;
	--gray-100: #f3f4f6;
	--gray-200: #e5e7eb;
	--gray-300: #d1d5db;
	--gray-500: #6b7280;
	--gray-700: #374151;
	--gray-900: #111827;
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* { 
	box-sizing: border-box; 
}
body { 
	margin: 0; 
	font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: #374151; 
	overflow-x: hidden;
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
	line-height: 1.6;
}
.container { 
	max-width: 1100px; 
	margin: 0 auto; 
	padding: 0 16px; 
}

/* Mobile-first container padding */
@media (max-width: 768px) {
	.container {
		padding: 0;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0;
	}
}

.site-header { 
	background: #f3f4f6; 
	position: fixed; 
	top: 0; 
	left: 0;
	right: 0;
	width: 100%;
	z-index: 1000; 
	backdrop-filter: blur(10px);
	border-bottom: 1px solid #e5e7eb;
	box-shadow: var(--shadow-lg);
}
.header-inner { 
	display: flex; 
	align-items: center; 
	justify-content: space-between; 
	padding: 8px 0; 
	min-height: 50px;
}

/* Simple header icons */
.header-favorites-link,
.header-cart-link {
	text-decoration: none;
	color: #000 !important;
	font-size: 18px;
}

.header-favorites-link:hover,
.header-cart-link:hover {
	color: #000 !important;
	text-decoration: none;
}

.header-favorites-link i,
.header-cart-link i {
	color: #000 !important;
}

.favorites-count,
.cart-count {
	position: absolute;
	top: -6px;
	right: -6px;
	background: #dc2626;
	color: white;
	border-radius: 50%;
	min-width: 18px;
	height: 18px;
	font-size: 11px;
	font-weight: 600;
	display: none;
	align-items: center;
	justify-content: center;
	line-height: 1;
	padding: 0 4px;
	box-shadow: 0 2px 4px rgba(220, 38, 38, 0.3);
}

/* Simple menu button */
.header-menu-btn {
	background: none;
	border: none;
	cursor: pointer;
	color: #000 !important;
	font-size: 18px;
	padding: 8px;
}

.header-menu-btn:hover {
	color: #000 !important;
}

.header-menu-btn i {
	color: #000 !important;
}

/* Mobile header adjustments */
@media (max-width: 768px) {
	.header-inner {
		padding: 6px 0;
		min-height: 45px;
	}
	
	.header-favorites-link,
	.header-cart-link {
		font-size: 16px;
	}
	
	.header-menu-btn {
		font-size: 16px;
	}
	
	.favorites-count,
	.cart-count {
		min-width: 16px;
		height: 16px;
		font-size: 10px;
		top: -5px;
		right: -5px;
		display: none;
	}
}

/* Fix for fixed header - add padding to main content */
main.container {
	padding-top: 66px;
}

@media (max-width: 768px) {
	main.container {
		padding-top: 57px;
	}
}

@media (max-width: 480px) {
	main.container {
		padding-top: 57px;
	}
}
.nav a { margin-right: 16px; text-decoration: none; color: #333; }
.nav .dropdown { display: inline-block; position: relative; }
.nav .dropdown span { cursor: default; }
.nav .dropdown-menu { display: none; position: absolute; background: #f3f4f6; border: 1px solid #e5e7eb; box-shadow: 0 4px 12px rgba(0,0,0,0.06); padding: 8px; }
.nav .dropdown:hover .dropdown-menu { display: block; }
.nav .dropdown-menu a { display: block; padding: 6px 10px; white-space: nowrap; }
.nav .dropdown-menu h4 { margin: 6px 10px; font-size: 13px; color: #999; text-transform: uppercase; letter-spacing: .3px; }
.lang-switch a { color: #666; text-decoration: none; margin-left: 8px; }
.hero { padding: 24px 0; }
/* Page headings - Unified styles */
h1 {
	margin: 0 0 20px 0;
	padding-left: 15px;
	font-size: 1.8rem;
	font-weight: 600;
	color: #000000;
	text-align: left;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

h2 {
	margin: 0 0 16px 0;
	padding-left: 15px;
	font-size: 1.6rem;
	font-weight: 600;
	color: #000000;
	text-align: left;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

h3 {
	margin: 0 0 12px 0;
	padding-left: 15px;
	font-size: 1.4rem;
	font-weight: 600;
	color: #000000;
	text-align: left;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; }

/* Category products grid - 4 cards per row on desktop */
.category-products .grid {
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

/* Category products grid - 3 cards per row on medium screens */
@media (max-width: 1024px) and (min-width: 769px) {
	.category-products .grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 16px;
	}
}
.card { 
	border: none; 
	text-decoration: none; 
	color: inherit; 
	border-radius: 12px; 
	overflow: hidden; 
	background: #ffffff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
	display: flex;
	flex-direction: column;
}

.card-image-link {
	text-decoration: none;
	display: block;
}

.card-image-link:hover {
	text-decoration: none;
}

.card-image-link:focus {
	text-decoration: none;
	outline: none;
}

.card-image-link:visited {
	text-decoration: none;
}

.card-title-link {
	text-decoration: none;
	color: inherit;
}

.card-title-link:hover {
	text-decoration: none;
	color: inherit;
}

.card-title-link:focus {
	text-decoration: none;
	outline: none;
	color: inherit;
}

.card-title-link:visited {
	text-decoration: none;
	color: inherit;
}

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

.card img { 
	width: 100%; 
	height: 280px; 
	object-fit: cover; 
	display: block;
	background: #ffffff;
	border-radius: 12px 12px 0 0;
	position: relative;
}

.card-body { 
	padding: 0;
	flex: 1;
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 2;
}

/* Простой блок контента */
.card-content-block {
	padding: 16px;
	background: #ffffff;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}

.card-body h3 {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 500;
	color: #000000;
	text-align: center;
	line-height: 1.3;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.pagination { 
	display: flex; 
	align-items: center; 
	gap: 12px; 
	justify-content: center; 
	padding: 16px 0; 
}

/* Стили для кругов пагинации */
.pagination a, .pagination span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: #fbbf24; /* Желтый цвет для всех кругов */
	color: #92400e; /* Темно-желтый текст */
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid #f59e0b;
}

.pagination a:hover {
	background: #f59e0b; /* Темнее при наведении */
	color: #92400e;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

.pagination .current {
	background: linear-gradient(135deg, #7c3aed, #5b21b6); /* Фиолетовый для текущей */
	color: white;
	box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
	border-color: #5b21b6;
}

/* Стили для многоточия */
.pagination .dots {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	color: #6b7280;
	font-weight: 600;
	background: transparent;
	border: none;
	box-shadow: none;
}

/* Стили для выпадающего меню в админке */
.dropdown-container {
	position: relative;
	display: inline-block;
}

.dropdown-toggle {
	padding: 8px 12px;
	background: rgba(124, 58, 237, 0.1);
	color: #7c3aed;
	border: 1px solid #7c3aed;
	border-radius: 8px;
	text-decoration: none;
	font-size: 0.85rem;
	font-weight: 500;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 4px;
	cursor: pointer;
}

.dropdown-toggle:hover {
	background: #7c3aed;
	color: white;
	transform: translateY(-1px);
}

.dropdown-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: white;
	border: 1px solid rgba(124, 58, 237, 0.2);
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	z-index: 9999;
	min-width: 160px;
	margin-top: 4px;
	overflow: visible;
	max-height: 200px;
	overflow-y: auto;
}

.dropdown-menu a {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 12px;
	text-decoration: none;
	font-size: 0.85rem;
	transition: all 0.2s ease;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-menu a:last-child {
	border-bottom: none;
}

.dropdown-menu a:hover {
	background: rgba(0, 0, 0, 0.05);
}

/* Dropdown menu positioned above button */
.dropdown-menu.dropdown-up {
	top: auto;
	bottom: 100%;
	margin-top: 0;
	margin-bottom: 4px;
}

/* Dropdown menu positioned to the right */
.dropdown-menu.dropdown-right {
	left: auto;
	right: 0;
}

/* Анимация появления выпадающего меню */
.dropdown-menu.show {
	display: block;
	animation: dropdownFadeIn 0.2s ease-out;
}

@keyframes dropdownFadeIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/* Product page styles */

/* Weight input validation styles */
.form-input:invalid {
	border-color: #ff4444 !important;
	box-shadow: 0 0 0 2px rgba(255, 68, 68, 0.2) !important;
}

.form-input:invalid:focus {
	border-color: #ff4444 !important;
	box-shadow: 0 0 0 2px rgba(255, 68, 68, 0.3) !important;
}

/* Admin filter animations */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Новинки Section */
.novelties-section {
	padding: 60px 0;
	background: linear-gradient(135deg, rgba(124, 58, 237, 0.02) 0%, rgba(139, 92, 246, 0.01) 100%);
}

.novelties-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	margin-top: 40px;
	padding: 0 20px;
}

.novelty-card {
	background: var(--white);
	border-radius: 24px;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	box-shadow: var(--shadow-lg);
	border: 2px solid var(--white);
	display: block;
	text-decoration: none;
	color: inherit;
	position: relative;
}

.novelty-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.novelty-card:hover::before {
	opacity: 1;
}

.novelty-card:hover {
	transform: translateY(-12px) scale(1.02);
	box-shadow: 0 25px 50px rgba(124, 58, 237, 0.2);
	border-color: var(--primary-purple-light);
}

.novelty-image {
	width: 100%;
	height: 200px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: transform 0.3s ease;
	position: relative;
}

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

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

.novelty-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-purple, #7c3aed);
	font-size: 2rem;
}


.novelty-content {
	padding: 24px 20px;
	text-align: center;
	background: var(--white);
	transition: color 0.3s ease;
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.novelty-title {
	font-size: 1.3rem;
	font-weight: 400;
	color: var(--gray-700);
	margin: 0;
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.novelty-card:hover .novelty-title {
	color: #000000;
}

.novelty-category {
	font-size: 0.85rem;
	color: var(--primary-purple, #7c3aed);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.novelty-price {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}


.price-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 4px 0;
}

.price-block {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
}

.price-label {
	font-size: 0.75rem;
	color: #000000;
	font-weight: 300;
	text-align: left;
	margin: 0;
	line-height: 1;
}

.price-value {
	font-size: 2.25rem;
	color: #000000;
	font-weight: 400;
	text-align: left;
	margin: 0;
	line-height: 1;
}

.favorite-btn {
	background: #ffffff;
	border: 2px solid var(--primary-purple);
	color: var(--primary-purple);
	padding: 8px;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	line-height: 1;
	box-shadow: 0 2px 8px rgba(124, 58, 237, 0.15);
}

.favorite-btn:hover {
	background: var(--primary-purple);
	color: #ffffff;
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.favorite-btn.active {
	background: var(--primary-purple);
	color: #ffffff;
	box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.favorite-btn.active i {
	color: #ffffff;
}

/* NEW badge for novelty products */
.novelty-badge {
	position: absolute;
	top: 8px;
	right: 8px;
	background: linear-gradient(135deg, #ffd700, #ffed4e);
	color: #000000;
	font-size: 0.7rem;
	font-weight: 700;
	padding: 4px 8px;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
	z-index: 2;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

@media (max-width: 768px) {
	.novelty-badge {
		font-size: 0.65rem;
		padding: 3px 6px;
		top: 6px;
		right: 6px;
	}
}

@media (max-width: 480px) {
	.novelty-badge {
		font-size: 0.6rem;
		padding: 2px 5px;
		top: 4px;
		right: 4px;
	}
}

.favorite-btn i {
	font-size: 1rem;
	transition: all 0.3s ease;
}

.novelty-quantity {
	font-size: 0.75rem;
	color: var(--primary-purple-dark, #5b21b6);
	font-weight: 600;
	background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
	border: 1px solid rgba(124, 58, 237, 0.2);
	padding: 4px 8px;
	border-radius: 6px;
	text-align: center;
	margin: 4px 0;
	box-shadow: 0 1px 3px rgba(124, 58, 237, 0.1);
	transition: all 0.3s ease;
}

.novelty-btn {
	background: linear-gradient(135deg, var(--primary-purple, #7c3aed) 0%, var(--primary-purple-dark, #5b21b6) 100%);
	color: white;
	padding: 10px 20px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	text-align: center;
	transition: all 0.3s ease;
	margin-top: auto;
}

.novelty-btn:hover {
	background: linear-gradient(135deg, var(--primary-purple-dark, #5b21b6) 0%, var(--primary-purple, #7c3aed) 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(124, 58, 237, 0.3);
	text-decoration: none;
	color: white;
}

/* Показываем кнопку только на десктопе */
@media (min-width: 769px) {
	.novelty-btn {
		display: block;
	}
}

/* Responsive for novelties */
@media (max-width: 1200px) {
	.novelties-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 16px;
		padding: 0 20px;
	}
}

@media (max-width: 992px) {
	.novelties-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 16px;
		padding: 0 20px;
	}
}

@media (max-width: 768px) {
	.novelties-section {
		padding: 40px 0;
	}
	
	.novelties-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
		margin-top: 30px;
		padding: 0 15px;
	}
	
	/* Изменяем стиль карточек новинок в мобильной версии, чтобы соответствовать стилю категорий */
	.novelty-card {
		background: var(--white);
		border-radius: 24px;
		overflow: hidden;
		transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
		box-shadow: var(--shadow-lg);
		border: 2px solid var(--white);
		display: block;
		text-decoration: none;
		color: inherit;
		position: relative;
	}
	
	.novelty-card::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%);
		opacity: 0;
		transition: opacity 0.3s ease;
	}
	
	.novelty-card:hover::before {
		opacity: 1;
	}
	
	.novelty-card:hover {
		transform: translateY(-12px) scale(1.02);
		box-shadow: 0 25px 50px rgba(124, 58, 237, 0.2);
		border-color: var(--primary-purple-light);
	}
	
	.novelty-image {
		width: 100%;
		height: 180px;
		background-size: cover;
		background-position: center;
		position: relative;
		overflow: hidden;
		transition: transform 0.3s ease;
	}
	
	.novelty-card:hover .novelty-image {
		transform: scale(1.05);
	}
	
	.novelty-content {
		padding: 18px;
		text-align: center;
		background: var(--white);
	}
	
	.novelty-title {
		font-size: 1.1rem;
		font-weight: 400;
		color: var(--gray-700);
		margin: 0;
		line-height: 1.3;
		transition: color 0.3s ease;
	}
	
	.novelty-card:hover .novelty-title {
		color: #000000;
	}
	
	.novelty-btn {
		display: none; /* Скрываем кнопку в мобильной версии, как у категорий */
	}
	
}

@media (max-width: 480px) {
	.novelties-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
		padding: 0 10px;
	}
	
	.novelty-image {
		height: 150px;
	}
	
	.novelty-content {
		padding: 15px;
	}
	
	.novelty-title {
		font-size: 1rem;
	}
}

/* Breadcrumbs */
.breadcrumbs {
	background: rgba(124, 58, 237, 0.06);
	border: 1px solid rgba(124, 58, 237, 0.12);
	border-radius: 10px;
	padding: 8px 14px;
	margin: 91px 0 5px 0;
	box-shadow: 0 2px 6px rgba(124, 58, 237, 0.06);
}

.breadcrumbs-list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.breadcrumbs-item {
	display: flex;
	align-items: center;
	gap: 8px;
}

.breadcrumbs-item:not(:last-child)::after {
	content: '→';
	color: var(--primary-purple, #7c3aed);
	font-size: 1rem;
	font-weight: 400;
	margin: 0 6px;
	opacity: 0.8;
}

.breadcrumbs-link {
	color: var(--primary-purple, #7c3aed);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	padding: 4px 8px;
	border-radius: 6px;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
}

.breadcrumbs-item:first-child .breadcrumbs-link::before {
	content: '\f015';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	margin-right: 6px;
	font-size: 0.8rem;
	color: var(--primary-purple, #7c3aed);
}

.breadcrumbs-link:hover {
	color: var(--primary-purple-dark, #5b21b6);
	background: rgba(124, 58, 237, 0.1);
	transform: translateY(-1px);
}

.breadcrumbs-current {
	color: var(--gray-700, #374151);
	font-weight: 400;
	font-size: 0.9rem;
	padding: 4px 8px;
	background: rgba(55, 65, 81, 0.05);
	border-radius: 6px;
}

/* Mobile breadcrumbs */
@media (max-width: 768px) {
	.breadcrumbs {
		padding: 6px 12px;
		margin: 80px 0 3px 0;
		border-radius: 8px;
	}
	
	.breadcrumbs-list {
		gap: 6px;
	}
	
	.breadcrumbs-link,
	.breadcrumbs-current {
		font-size: 0.85rem;
		padding: 3px 6px;
	}
}

@media (max-width: 480px) {
	.breadcrumbs {
		padding: 4px 8px;
		margin: 75px 0 2px 0;
		border-radius: 6px;
	}
	
	.breadcrumbs-link,
	.breadcrumbs-current {
		font-size: 0.8rem;
		padding: 2px 4px;
	}
}
.product-page {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin: 30px 0;
}

.product-media {
	background: #ffffff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	position: relative;
	height: 500px;
	max-height: 500px;
}

.product-media img {
	width: 100%;
	height: 500px;
	max-height: 500px;
	object-fit: cover;
	object-position: center;
	display: block;
}

.product-info {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

/* Product titles */
.product-title-mobile {
	display: none;
	padding: 20px;
	background: linear-gradient(135deg, var(--gray-50), #ffffff);
	border-top: 1px solid var(--gray-200);
}

.product-title-mobile h1 {
	margin: 0;
	font-size: 1.4rem;
	font-weight: 400;
	color: #000000;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	text-align: center;
}

.product-title-desktop {
	display: block;
}

.product-title-desktop h1 {
	margin: 0 0 16px 0;
	font-size: 1.6rem;
	font-weight: 400;
	color: #000000;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}


/* Price display */
.price-display {
	background: linear-gradient(135deg, var(--gray-50), #ffffff);
	border-radius: 16px;
	padding: 24px;
	border: 1px solid var(--gray-200);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.price-main {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
}

.price-label {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--gray-700);
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.price-value {
	font-size: 2.25rem;
	font-weight: 400;
	color: #000000;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.price-note {
	margin: 0;
	font-size: 0.9rem;
	color: var(--gray-600);
	line-height: 1.5;
}

.price-breakdown {
	margin-top: 16px;
	padding: 16px;
	background: var(--white);
	border-radius: 12px;
	border: 1px solid var(--gray-200);
}

.breakdown-title {
	margin: 0 0 8px 0;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--gray-700);
}

.breakdown-text {
	margin: 0;
	font-size: 0.85rem;
	color: var(--gray-600);
	line-height: 1.4;
}

/* Form styles */
.order-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

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

.form-label {
	font-size: 1rem;
	font-weight: 600;
	color: var(--gray-700);
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.form-input, .form-select {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid var(--gray-200);
	border-radius: 12px;
	font-size: 1rem;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	transition: all 0.3s ease;
	background: var(--white);
}

.form-input:focus, .form-select:focus {
	outline: none;
	border-color: #000000;
	box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.order-btn {
	background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-dark));
	color: var(--white);
	border: none;
	padding: 16px 24px;
	border-radius: 12px;
	font-size: 1.1rem;
	font-weight: 400;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.order-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.order-btn:active {
	transform: translateY(0);
}

.order-btn i {
	font-size: 1rem;
}

.order-btn span {
	font-weight: 600;
}

/* Product description */
.product-description {
	margin-top: 40px;
	padding: 30px;
	background: linear-gradient(135deg, var(--gray-50), #ffffff);
	border-radius: 16px;
	border: 1px solid var(--gray-200);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.product-description h2 {
	margin: 0 0 20px 0;
	font-size: 1.35rem;
	font-weight: 400;
	color: #000000;
	text-align: center;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}


.description-content {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--gray-700);
}

.short-description {
	margin: 0 0 16px 0;
	font-size: 1.1rem;
	color: #000000;
}

.description-content p {
	margin: 0 0 16px 0;
}

.description-content p:last-child {
	margin-bottom: 0;
}

.description-text {
	white-space: pre-line;
	word-wrap: break-word;
}

/* Also Buy Section */
.also-buy-section {
	margin-top: 50px;
	padding: 40px 30px;
	background: linear-gradient(135deg, rgba(124, 58, 237, 0.03), rgba(251, 191, 36, 0.03));
	border-radius: 20px;
	border: 1px solid rgba(124, 58, 237, 0.1);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.also-buy-title {
	margin: 0 0 30px 0;
	font-size: 1.75rem;
	font-weight: 600;
	color: var(--primary-purple);
	text-align: center;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Grid для "Також купують" - 4 карточки в ряд на ПК */
.also-buy-section .grid {
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

/* Уменьшенная высота карточек в "Також купують" на ПК */
.also-buy-section .card img {
	height: 238px;
}

.site-footer { 
	border-top: 1px solid #eee; 
	margin-top: 10px; 
	padding: 24px 0; 
	color: #666; 
	font-size: 14px;
}
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th, .cart-table td { border-bottom: 1px solid #eee; padding: 8px; text-align: left; }
.cart-table .thumb { width: 60px; height: 60px; object-fit: cover; border-radius: 6px; }
.flash { background: #e8f5e9; border: 1px solid #c8e6c9; padding: 10px 12px; margin: 12px 0; border-radius: 6px; }
@media (max-width: 800px) { .product { grid-template-columns: 1fr; } }

/* === Mobile Responsiveness Fixes === */

/* Mobile grid adjustments */
@media (max-width: 768px) {
	.grid {
		grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
		gap: 12px;
		padding: 0 15px;
	}
	
	/* Category products grid - 2 cards per row on tablet */
	.category-products .grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
		padding: 0 15px;
	}
	
	.card {
		border-radius: 16px;
	}
	
	.card img {
		height: 180px;
		border-radius: 16px 16px 0 0;
	}
	
	.card-content-block {
		padding: 12px;
		gap: 6px;
	}
	
	.card-body h3 {
		font-size: 1rem;
	}
	
	.price-label {
		font-size: 0.7rem;
	}
	
	.price-value {
		font-size: 1.89rem;
	}
	
	.favorite-btn {
		width: 32px;
		height: 32px;
		font-size: 0.9rem;
		border-radius: 10px;
	}
	
	.favorite-btn i {
		font-size: 0.9rem;
	}
	
	/* Product page mobile - элементы в столбик */
	.product-page {
		grid-template-columns: 1fr;
		gap: 20px;
		margin: 20px 0;
		display: flex;
		flex-direction: column;
	}
	
	/* Порядок элементов в мобильной версии */
	.product-media {
		order: 1;
	}
	
	.product-info {
		order: 2;
		gap: 16px;
	}
	
	.product-description {
		order: 3;
		margin-top: 20px;
	}
	
	.also-buy-section {
		order: 4;
		margin-top: 30px;
		padding: 25px 16px;
	}
	
	.also-buy-title {
		font-size: 1.4rem;
		margin-bottom: 20px;
	}
	
	/* Grid для "Також купують" - 2 карточки в ряд на планшетах */
	.also-buy-section .grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
	
	/* Уменьшенная высота карточек в "Також купують" на планшетах */
	.also-buy-section .card img {
		height: 153px;
	}
	
	.product-media img {
		height: 400px;
		width: 100%;
		object-fit: cover;
		border-radius: 12px;
	}
	
	.product-title-mobile {
		display: block;
		padding: 16px;
		background: linear-gradient(135deg, var(--gray-50), #ffffff);
		border-top: 1px solid var(--gray-200);
		border-radius: 0 0 12px 12px;
	}
	
	.product-title-mobile h1 {
		font-size: 1.3rem;
		text-align: center;
		margin: 0;
	}
	
	.product-title-desktop {
		display: none;
	}
	
	.price-display {
		padding: 16px;
		margin-bottom: 16px;
	}
	
	.order-form {
		margin-top: 16px;
	}
	
	.product-description {
		background: #f8f9fa;
		padding: 20px;
		border-radius: 12px;
		margin-top: 20px;
	}
	
	.product-description h2 {
		font-size: 1.2rem;
		margin-bottom: 12px;
		color: #333;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.grid {
		grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
		gap: 8px;
		padding: 0 10px;
	}
	
	/* Category products grid - 2 cards per row on mobile */
	.category-products .grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
		padding: 0 10px;
	}
	
	.card img {
		height: 200px;
	}
	
	.card-content-block {
		padding: 10px;
		gap: 5px;
	}
	
	.card-body h3 {
		font-size: 0.95rem;
	}
	
	.price-label {
		font-size: 0.65rem;
	}
	
	.price-value {
		font-size: 1.62rem;
	}
	
	.favorite-btn {
		width: 28px;
		height: 28px;
		font-size: 0.8rem;
		border-radius: 8px;
	}
	
	.favorite-btn i {
		font-size: 0.8rem;
	}
}

/* Very small screens - 1 card per row */
@media (max-width: 360px) {
	.category-products .grid {
		grid-template-columns: 1fr;
		gap: 8px;
		padding: 0 10px;
	}
	
	.card img {
		height: 200px;
	}
	
	.product-media img {
		height: 350px;
	}
	
	.card-content-block {
		padding: 10px;
		gap: 5px;
	}
	
	.card-body h3 {
		font-size: 0.95rem;
	}
	
	.price-label {
		font-size: 0.65rem;
	}
	
	.price-value {
		font-size: 1.62rem;
	}
	
	.favorite-btn {
		width: 28px;
		height: 28px;
		font-size: 0.8rem;
		border-radius: 8px;
	}
	
	.favorite-btn i {
		font-size: 0.8rem;
	}
	
	.hero {
		padding: 16px 0;
	}
	
	.product-title-mobile h1 {
		font-size: 1.2rem;
	}
	
	/* Дополнительные стили для очень маленьких экранов */
	.product-media img {
		height: 350px;
	}
	
	.product-title-mobile h1 {
		font-size: 1.1rem;
	}
	
	.price-display {
		padding: 12px;
	}
	
	.product-description {
		padding: 16px;
	}
	
	.product-description h2 {
		font-size: 1.1rem;
		text-align: center;
	}
	
	.also-buy-section {
		margin-top: 20px;
		padding: 20px 12px;
	}
	
	.also-buy-title {
		font-size: 1.2rem;
		margin-bottom: 16px;
	}
	
	/* Grid для "Також купують" - 2 карточки в ряд на мобильных */
	.also-buy-section .grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
	}
	
	/* Уменьшенная высота карточек в "Також купують" на мобильных */
	.also-buy-section .card img {
		height: 170px;
	}
	
	.price-value {
		font-size: 1.89rem;
	}
	
	.order-form {
		gap: 16px;
	}
	
	.form-input, .form-select {
		padding: 10px 12px;
		font-size: 0.9rem;
	}
	
	.order-btn {
		padding: 14px 20px;
		font-size: 1rem;
	}
	
	.product-description {
		margin-top: 24px;
		padding: 20px;
	}
	
	.product-description h2 {
		font-size: 1.3rem;
		margin-bottom: 16px;
		text-align: center;
	}
	
	.pagination {
		flex-wrap: wrap;
		gap: 8px;
		padding: 12px 0;
	}
	
	.pagination a, .pagination span {
		width: 40px;
		height: 40px;
		font-size: 14px;
	}
	
	.pagination .dots {
		width: 40px;
		height: 40px;
	}
}

/* Дополнительные стили для очень маленьких экранов */
@media (max-width: 480px) {
	.pagination {
		gap: 6px;
	}
	
	.pagination a, .pagination span {
		width: 36px;
		height: 36px;
		font-size: 13px;
	}
	
	.pagination .dots {
		width: 36px;
		height: 36px;
	}
}

/* Mobile form adjustments */
@media (max-width: 768px) {
	.order-form label, 
	.checkout-form label {
		margin: 10px 0;
		font-size: 14px;
	}
	
	input[type="text"], 
	input[type="date"], 
	input[type="number"], 
	input[type="tel"], 
	input[type="email"], 
	textarea, 
	select {
		padding: 10px;
		font-size: 16px; /* Prevents zoom on iOS */
	}
	
	button {
		padding: 12px 16px;
		font-size: 16px;
		width: 100%;
		margin-top: 8px;
	}
}

/* Mobile table adjustments */
@media (max-width: 768px) {
	.cart-table-container {
		overflow-x: auto;
		margin: 0 -12px;
		padding: 0 12px;
	}
	
	.cart-table {
		font-size: 14px;
		min-width: 600px;
	}
	
	.cart-table th, 
	.cart-table td {
		padding: 6px 4px;
		white-space: nowrap;
	}
	
	.cart-table .thumb {
		width: 50px;
		height: 50px;
	}
	
	.cart-table .product-name,
	.cart-table .category,
	.cart-table .filling {
		max-width: 120px;
		overflow: hidden;
		text-overflow: ellipsis;
	}
}

@media (max-width: 480px) {
	.cart-table-container {
		margin: 0 -8px;
		padding: 0 8px;
	}
	
	.cart-table {
		font-size: 12px;
		min-width: 500px;
	}
	
	.cart-table th, 
	.cart-table td {
		padding: 4px 2px;
	}
	
	.cart-table .thumb {
		width: 40px;
		height: 40px;
	}
	
	.cart-table .product-name,
	.cart-table .category,
	.cart-table .filling {
		max-width: 100px;
	}
}

/* Mobile footer adjustments */
@media (max-width: 768px) {
	.site-footer {
		padding: 20px 0;
		font-size: 13px;
		margin-top: 24px;
	}
}

/* === Home page custom styles === */
.hero-image { 
	width: 100%; 
	height: 100vh; 
	background-image: url('https://i.postimg.cc/nrCN18My/upscalemedia-transformed-1.jpg'); 
	background-size: contain; 
	background-position: center; 
	background-repeat: no-repeat; 
	background-color: var(--white);
	position: relative;
}
.desserts-section { 
	max-width: 1200px; 
	margin: 0 auto; 
	padding: 80px 20px;
	background: var(--white);
	position: relative;
}

.desserts-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 50% 0%, rgba(251, 191, 36, 0.05) 0%, transparent 50%);
	pointer-events: none;
}
/* Modern Section Headers */
.section-title, 
.categories-title, 
.reviews-title, 
.delivery-title {
	font-size: 1.8rem; 
	text-align: left; 
	color: #000000;
	margin-bottom: 30px;
	padding-left: 15px;
	font-weight: 600; 
	font-family: 'Inter', sans-serif;
	position: relative;
	letter-spacing: 0;
	line-height: 1.2;
}

.slider-container { 
	display: flex; 
	gap: 25px; 
	overflow-x: auto; 
	scroll-behavior: smooth; 
	padding: 40px 20px; 
	cursor: grab; 
	justify-content: center; 
	align-items: center; 
	flex-wrap: nowrap; 
	position: relative;
	width: 100%;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.slider-container:active { cursor: grabbing; }
.slider-container::-webkit-scrollbar { display: none; }

/* Убираем центрирование для всех экранов - показываем все элементы */

/* Для десктопа - центрируем элементы */
@media (min-width: 769px) {
	.slider-container {
		justify-content: center !important;
	}
}

/* Для мобильных - выравниваем по левому краю */
@media (max-width: 768px) {
	.slider-container {
		justify-content: flex-start !important;
	}
}
@media (max-width: 768px) { .slider-container { animation: slideHint 3s ease-in-out infinite; } @keyframes slideHint { 0%,100% { transform: translateX(0);} 50% { transform: translateX(-10px);} } }
.dessert-card { 
	min-width: 180px; 
	height: 180px; 
	border-radius: 50%; 
	position: relative; 
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
	flex-shrink: 0; 
	background: var(--white); 
	box-shadow: var(--shadow-xl);
	border: 4px solid transparent;
	display: block; 
	text-decoration: none; 
	overflow: hidden;
	background-clip: padding-box;
}

/* Instagram Stories градиентная обводка */
.dessert-card::before {
	content: '';
	position: absolute;
	top: -4px;
	left: -4px;
	right: -4px;
	bottom: -4px;
	background: linear-gradient(45deg, 
		#f09433 0%, 
		#e6683c 25%, 
		#dc2743 50%, 
		#cc2366 75%, 
		#bc1888 100%);
	border-radius: 50%;
	z-index: -1;
	opacity: 0;
	transition: all 0.3s ease;
	animation: instagramPulse 2s ease-in-out infinite;
}

.dessert-card:hover::before {
	opacity: 1;
	animation: instagramPulseHover 1.5s ease-in-out infinite;
}

@keyframes instagramPulse {
	0%, 100% { 
		transform: scale(1);
		opacity: 0;
	}
	50% { 
		transform: scale(1.02);
		opacity: 0.3;
	}
}

@keyframes instagramPulseHover {
	0%, 100% { 
		transform: scale(1);
		opacity: 1;
	}
	50% { 
		transform: scale(1.05);
		opacity: 0.8;
	}
}

/* Instagram Stories состояния */
.dessert-card.instagram-new::before {
	opacity: 1;
	animation: instagramPulse 2s ease-in-out infinite;
}

.dessert-card.instagram-viewed::before {
	opacity: 0;
	background: linear-gradient(45deg, 
		#8e8e93 0%, 
		#8e8e93 25%, 
		#8e8e93 50%, 
		#8e8e93 75%, 
		#8e8e93 100%);
	animation: none;
}

.dessert-card.instagram-viewed:hover::before {
	opacity: 0.6;
	background: linear-gradient(45deg, 
		#8e8e93 0%, 
		#8e8e93 25%, 
		#8e8e93 50%, 
		#8e8e93 75%, 
		#8e8e93 100%);
}

/* Индикатор нового контента */
.dessert-card.instagram-new::after {
	content: '';
	position: absolute;
	top: 8px;
	right: 8px;
	width: 12px;
	height: 12px;
	background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
	border-radius: 50%;
	z-index: 3;
	border: 2px solid var(--white, #ffffff);
	animation: newContentPulse 1.5s ease-in-out infinite;
}

@keyframes newContentPulse {
	0%, 100% { 
		transform: scale(1);
		opacity: 1;
	}
	50% { 
		transform: scale(1.2);
		opacity: 0.8;
	}
}

.dessert-card:hover { 
	transform: translateY(-8px) scale(1.05); 
	box-shadow: 0 25px 50px rgba(124, 58, 237, 0.25);
}
.card-image { width: 100%; height: 100%; background-size: cover; background-position: center; background-repeat: no-repeat; display: flex; align-items: center; justify-content: center; position: relative; border-radius: 50%; overflow: hidden; }

/* Стили для контента в десертах */
.dessert-card .card-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
	padding: 20px 15px 15px;
	border-radius: 0 0 50% 50%;
	text-align: center;
}

.dessert-card .card-content h3 {
	color: white;
	font-size: 1rem;
	font-weight: 600;
	margin: 0;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}



.categories-section { 
	max-width: 1200px; 
	margin: 0 auto; 
	padding: 80px 20px; 
	background: var(--gray-50);
	position: relative;
}

.categories-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(124, 58, 237, 0.03) 0%, rgba(251, 191, 36, 0.03) 100%);
	pointer-events: none;
}

/* Individual category sections */
.category-section {
	padding: 60px 0;
}

.category-header {
	margin-bottom: 25px;
}

.category-title {
	font-size: 1.8rem;
	font-weight: 600;
	color: #000000;
	margin: 0 0 20px 0;
	padding-left: 15px;
	text-align: left;
}

.category-title-link {
	text-decoration: none;
	color: inherit;
	transition: color 0.3s ease;
}

.category-title-link:hover {
	color: var(--primary-purple-dark, #5b21b6);
	text-decoration: none;
}

.category-products {
	margin-bottom: 20px;
}

.category-footer {
	text-align: center;
	margin-top: 20px;
}

.category-view-all-link {
	display: inline-block;
	padding: 12px 24px;
	background: linear-gradient(135deg, #fbbf24, #f59e0b);
	color: #000000;
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
	transition: all 0.3s ease;
}

.category-view-all-link:hover {
	background: linear-gradient(135deg, #f59e0b, #d97706);
	color: #000000;
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.categories-grid { 
	display: grid; 
	grid-template-columns: repeat(4, 1fr); 
	gap: 16px; 
	padding: 0 20px; 
	position: relative;
	z-index: 1;
}

.category-card { 
	background: #ffffff; 
	border-radius: 12px; 
	overflow: hidden; 
	transition: all 0.3s ease; 
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	border: none;
	display: block; 
	text-decoration: none; 
	color: inherit;
	position: relative;
}

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

.category-image { 
	width: 100%; 
	height: 280px; 
	background-size: cover; 
	background-position: center; 
	background-repeat: no-repeat;
}

.category-name { 
	padding: 16px; 
	padding-left: 15px;
	text-align: left; 
	font-size: 1.4rem; 
	font-weight: 600; 
	color: #000000; 
	background: #ffffff;
}

.banner-section { 
	max-width: 1200px; 
	margin: 0 auto; 
	padding: 40px 20px; 
	position: relative;
}

.banner { 
	background: linear-gradient(135deg, var(--white, #ffffff) 0%, rgba(124, 58, 237, 0.05) 100%); 
	border-radius: 32px; 
	padding: 50px 40px; 
	text-align: center; 
	box-shadow: 
		0 20px 50px rgba(124, 58, 237, 0.15),
		0 10px 30px rgba(0, 0, 0, 0.05),
		inset 0 1px 0 rgba(255, 255, 255, 0.8);
	border: 2px solid rgba(124, 58, 237, 0.2);
	position: relative; 
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.banner:hover {
	transform: translateY(-8px);
	box-shadow: 
		0 30px 70px rgba(124, 58, 237, 0.25),
		0 15px 40px rgba(0, 0, 0, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.9);
	border-color: var(--primary-purple-light, #a78bfa);
}

.banner::before { 
	content: ''; 
	position: absolute; 
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 20% 30%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(124, 58, 237, 0.08) 0%, transparent 50%);
	pointer-events: none;
}

.banner::after {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(135deg, var(--primary-purple-light, #a78bfa), transparent, var(--primary-purple-light, #a78bfa));
	border-radius: 34px;
	z-index: -1;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.banner:hover::after {
	opacity: 0.5;
}

.banner-title { 
	font-size: 1.62rem; 
	font-weight: 900; 
	background: linear-gradient(135deg, var(--primary-purple, #7c3aed) 0%, var(--primary-purple-dark, #5b21b6) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 20px; 
	position: relative; 
	z-index: 2;
	text-align: center !important;
	padding-left: 0 !important;
	letter-spacing: -0.02em;
	line-height: 1.2;
	transition: all 0.3s ease;
}

.banner-title::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 4px;
	background: linear-gradient(135deg, var(--primary-purple-light, #a78bfa) 0%, var(--primary-purple-dark, #5b21b6) 100%);
	border-radius: 2px;
	opacity: 0.8;
}

.banner:hover .banner-title::after {
	width: 150px;
	opacity: 1;
}

.banner-subtitle { 
	font-size: 1.4rem; 
	color: var(--gray-700, #374151); 
	margin-bottom: 35px; 
	font-weight: 600; 
	position: relative;
	text-align: center !important;
	padding-left: 0 !important; 
	z-index: 2;
	line-height: 1.6;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.send-photo-btn { 
	background: linear-gradient(135deg, var(--primary-purple, #7c3aed) 0%, var(--primary-purple-dark, #5b21b6) 100%); 
	color: var(--white, #ffffff); 
	border: none; 
	padding: 20px 50px; 
	font-size: 1.2rem; 
	font-weight: 400; 
	border-radius: 20px; 
	cursor: pointer; 
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
	box-shadow: 
		0 10px 30px rgba(124, 58, 237, 0.3),
		0 4px 15px rgba(0, 0, 0, 0.1);
	position: relative; 
	z-index: 2;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	overflow: hidden;
}

.send-photo-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s ease;
}

.send-photo-btn:hover::before {
	left: 100%;
}

.send-photo-btn:hover { 
	transform: translateY(-4px) scale(1.05); 
	box-shadow: 
		0 20px 50px rgba(124, 58, 237, 0.4),
		0 8px 25px rgba(0, 0, 0, 0.15);
	background: linear-gradient(135deg, var(--primary-purple-dark, #5b21b6) 0%, var(--primary-purple, #7c3aed) 100%);
}

.reviews-section { 
	max-width: 1200px; 
	margin: 0 auto; 
	padding: 80px 20px; 
	background: var(--white);
	position: relative;
}

.reviews-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.05) 0%, transparent 50%);
	pointer-events: none;
}

.reviews-grid { 
	display: grid; 
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
	gap: 25px; 
	margin-bottom: 60px;
	position: relative;
	z-index: 1;
}

.review-card { 
	background: linear-gradient(135deg, #f5f1e8 0%, #faf7f0 100%); 
	border-radius: 16px; 
	padding: 20px; 
	box-shadow: 0 8px 25px rgba(139, 69, 19, 0.1);
	border: 1px solid rgba(139, 69, 19, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.review-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(139, 69, 19, 0.05) 0%, rgba(160, 82, 45, 0.03) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.review-card:hover::before {
	opacity: 1;
}

.review-card:hover { 
	transform: translateY(-10px) scale(1.02); 
	box-shadow: 0 25px 50px rgba(139, 69, 19, 0.2);
	border-color: rgba(139, 69, 19, 0.2);
	background: linear-gradient(135deg, #f0ebe0 0%, #f5f1e8 100%);
}

.review-stars { 
	color: var(--primary-yellow); 
	font-size: 1rem; 
	margin-bottom: 12px;
	text-shadow: 0 1px 2px rgba(251, 191, 36, 0.2);
	position: relative;
	z-index: 1;
}

.review-text { 
	font-size: 0.95rem; 
	line-height: 1.5; 
	color: #5d4e37; 
	margin: 0;
	position: relative;
	z-index: 1;
}

.review-author { 
	font-weight: 400; 
	color: #000000; 
	text-align: right;
	position: relative;
	z-index: 1;
}

/* Google Maps style review elements */
.review-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 8px;
	position: relative;
	z-index: 1;
}

.review-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-dark) 100%);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	font-weight: 600;
	flex-shrink: 0;
	box-shadow: 0 2px 8px rgba(124, 58, 237, 0.2);
}

.review-name {
	font-weight: 600;
	color: #8b4513;
	font-size: 1rem;
	margin: 0;
}

.reviews-buttons { 
	display: flex; 
	gap: 25px; 
	justify-content: center; 
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}

.review-btn { 
	background: #fbbf24; 
	color: #000000; 
	border: 3px solid #fbbf24; 
	padding: 15px 35px; 
	font-size: 1.1rem; 
	font-weight: 400; 
	border-radius: 16px; 
	cursor: pointer; 
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
	text-decoration: none; 
	display: inline-block; 
	text-align: center;
	box-shadow: var(--shadow-md);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.review-btn:hover { 
	transform: translateY(-4px) scale(1.05); 
	box-shadow: 0 20px 40px rgba(251,191,36,0.4); 
	background: #f59e0b; 
	color: #000000;
}

.order-section { 
	max-width: 1200px; 
	margin: 0 auto; 
	padding: 80px 20px; 
	background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
	position: relative;
	overflow: hidden;
}

.order-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="order-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="%237c3aed" opacity="0.04"/><circle cx="80" cy="80" r="1" fill="%237c3aed" opacity="0.03"/><circle cx="50" cy="10" r="0.8" fill="%237c3aed" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23order-pattern)"/></svg>');
	pointer-events: none;
}


.steps-container { 
	display: grid; 
	grid-template-columns: repeat(4, 1fr); 
	gap: 30px; 
	position: relative;
	z-index: 1;
}

/* Обеспечиваем 4 колонки на всех десктопных разрешениях */
@media (min-width: 769px) {
	.steps-container {
		grid-template-columns: repeat(4, 1fr);
		gap: 25px;
	}
}

.step { 
	display: flex; 
	flex-direction: column;
	align-items: center; 
	text-align: center;
	padding: 40px 35px; 
	border-radius: 24px; 
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
	position: relative; 
	overflow: hidden;
	background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,250,252,0.8) 100%);
	border: 2px solid rgba(124,58,237,0.1);
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.step::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 0;
}

.step:hover::before {
	opacity: 1;
}

.step:hover { 
	transform: translateY(-8px) scale(1.02); 
	background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,250,252,0.9) 100%);
	border-color: rgba(124,58,237,0.2);
	box-shadow: 0 20px 40px rgba(124,58,237,0.15);
}

.step:hover .step-number {
	transform: scale(1.1);
	box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
}

.step-number { 
	background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%); 
	color: #fff; 
	width: 60px; 
	height: 60px; 
	border-radius: 50%; 
	display: flex; 
	align-items: center; 
	justify-content: center; 
	font-weight: 400; 
	font-size: 1.4rem; 
	flex-shrink: 0;
	margin-bottom: 20px;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
	position: relative;
	z-index: 1;
}

.step-number::before {
	content: '';
	position: absolute;
	top: -4px;
	left: -4px;
	right: -4px;
	bottom: -4px;
	background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(91, 33, 182, 0.2));
	border-radius: 50%;
	z-index: -1;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.step:hover .step-number::before {
	opacity: 1;
}

/* Специальные стили для шагов 2 и 4 с желтым цветом */
.step-2 .step-number {
	background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
	box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3) !important;
}

.step-2 .step-number::before {
	background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.2)) !important;
}

.step-4 .step-number {
	background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
	box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3) !important;
}

.step-4 .step-number::before {
	background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.2)) !important;
}

.step:hover .step-2 .step-number {
	box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4) !important;
}

.step:hover .step-4 .step-number {
	box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4) !important;
}

.step-content { 
	flex: 1; 
	position: relative;
	z-index: 1;
}

.step-title { 
	font-size: 1.9rem; 
	color: #1e293b; 
	margin-bottom: 25px; 
	font-weight: 400; 
	display: flex; 
	align-items: center; 
	justify-content: center;
	gap: 18px;
	position: relative;
	z-index: 1;
}

.step-text { 
	font-size: 1.1rem; 
	color: #475569; 
	line-height: 1.6;
	max-width: 280px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.delivery-section { 
	max-width: 1200px; 
	margin: 0 auto; 
	padding: 80px 20px; 
	background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
	position: relative;
	overflow: hidden;
}

.delivery-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="delivery-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="%237c3aed" opacity="0.04"/><circle cx="80" cy="80" r="1" fill="%237c3aed" opacity="0.03"/><circle cx="50" cy="10" r="0.8" fill="%237c3aed" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23delivery-pattern)"/></svg>');
	pointer-events: none;
}



.delivery-subtitle { 
	font-size: 1.3rem; 
	color: #64748b; 
	max-width: 800px; 
	margin: 0 auto 60px; 
	text-align: center;
	position: relative;
	z-index: 1;
	line-height: 1.6;
}

.services-wrapper { 
	display: flex; 
	flex-direction: column;
	position: relative;
	z-index: 1;
}

/* Desktop: самовывоз и доставка в ряд, маршрут отдельно */
@media (min-width: 769px) {
	.services-wrapper {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto auto;
		gap: 60px 30px;
	}
	.pickup-item { 
		grid-row: 1; 
		grid-column: 1; 
	}
	.delivery-item { 
		grid-row: 1; 
		grid-column: 2; 
	}
	.route-section { 
		grid-row: 2; 
		grid-column: 1 / -1; 
		margin-left: 0; 
		margin-right: 0; 
	}
}

.service-item { 
	background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,250,252,0.8) 100%);
	border: 2px solid rgba(124,58,237,0.1);
	border-radius: 24px; 
	padding: 40px 35px; 
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
	position: relative; 
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 0;
}

.service-item:hover::before {
	opacity: 1;
}

.service-item:hover { 
	transform: translateY(-8px) scale(1.02); 
	background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,250,252,0.9) 100%);
	border-color: rgba(124,58,237,0.2);
	box-shadow: 0 20px 40px rgba(124,58,237,0.15);
}

.pickup-item::after {
	content: '🏪';
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 2rem;
	opacity: 0.1;
	z-index: 0;
}

.delivery-item::after {
	content: '🚚';
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 2rem;
	opacity: 0.1;
	z-index: 0;
}

.service-title { 
	font-size: 1.9rem; 
	color: #1e293b; 
	margin-bottom: 25px; 
	font-weight: 400; 
	display: flex; 
	align-items: center; 
	gap: 18px;
	position: relative;
	z-index: 1;
}

.service-title i { 
	font-size: 1.62rem; 
	color: #7c3aed;
	background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	transition: all 0.3s ease;
}

.service-item:hover .service-title i {
	transform: scale(1.1);
	background: linear-gradient(135deg, #7c3aed 0%, #f59e0b 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.service-content { 
	position: relative;
	z-index: 1;
}

.service-content p { 
	margin-bottom: 18px; 
	font-size: 1.1rem; 
	color: #475569;
	line-height: 1.6;
}

.address { 
	background: linear-gradient(135deg, rgba(124,58,237,0.08) 0%, rgba(255,255,255,0.8) 100%);
	border: 2px solid rgba(124,58,237,0.1);
	border-radius: 16px; 
	padding: 25px; 
	margin: 25px 0; 
	font-weight: 600;
	color: #1e293b;
	position: relative;
}

.address::before {
	content: '📍';
	position: absolute;
	top: 10px;
	left: 15px;
	font-size: 1.2rem;
}

.address p:first-child {
	color: #7c3aed;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 8px;
}

.benefits-list { 
	list-style-type: none; 
	margin: 25px 0; 
	padding-left: 0; 
}

.benefits-list li { 
	margin-bottom: 15px; 
	padding-left: 35px; 
	position: relative;
	color: #475569;
	font-size: 1rem;
	line-height: 1.5;
}

.benefits-list li::before { 
	content: '✓'; 
	position: absolute; 
	left: 0; 
	color: #7c3aed; 
	font-weight: 400; 
	font-size: 1.3rem;
	background: linear-gradient(135deg, #7c3aed 0%, #10b981 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.note { 
	background: linear-gradient(135deg, rgba(251,191,36,0.1) 0%, rgba(255,255,255,0.8) 100%); 
	border: 2px solid rgba(251,191,36,0.2);
	border-radius: 16px; 
	padding: 25px; 
	margin-top: 25px; 
	font-size: 0.95rem;
	color: #475569;
}

.note p:first-child {
	color: #b45309;
	font-weight: 600;
	margin-bottom: 8px;
}
.route-section { 
	background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%); 
	border: 2px solid rgba(124,58,237,0.3);
	border-radius: 24px; 
	padding: 50px 40px; 
	margin-bottom: 50px; 
	text-align: center;
	position: relative;
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(124,58,237,0.3);
}

.route-section::before {
	content: '🗺️';
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 2.25rem;
	opacity: 0.1;
}

.route-section::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
	pointer-events: none;
}

.route-title { 
	font-size: 2rem; 
	color: #ffffff; 
	margin-bottom: 20px; 
	font-weight: 400;
	position: relative;
	z-index: 1;
}


.route-address { 
	font-size: 1.2rem; 
	margin-bottom: 35px; 
	color: #ffffff;
	font-weight: 500;
	position: relative;
	z-index: 1;
}

.route-options { 
	display: flex; 
	flex-wrap: wrap; 
	gap: 25px; 
	justify-content: center;
	position: relative;
	z-index: 1;
}

.route-option { 
	background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%); 
	color: #fff; 
	border: none; 
	border-radius: 50px; 
	padding: 18px 35px; 
	font-size: 1.1rem; 
	font-weight: 400; 
	cursor: pointer; 
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
	display: flex; 
	align-items: center; 
	gap: 12px;
	box-shadow: 0 8px 25px rgba(124,58,237,0.3);
	position: relative;
	overflow: hidden;
}

.route-option::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
	transition: left 0.5s;
}

.route-option:hover::before {
	left: 100%;
}

.route-option:hover { 
	transform: translateY(-5px) scale(1.05); 
	box-shadow: 0 15px 35px rgba(124,58,237,0.4);
	background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 100%);
}

.route-option i {
	font-size: 1.2rem;
}

/* Специальные стили для кнопки автобуса */
.route-option-bus {
	background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
	box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3) !important;
}

.route-option-bus:hover {
	background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%) !important;
	box-shadow: 0 15px 35px rgba(245, 158, 11, 0.4) !important;
}

/* Делаем обе кнопки желтыми */
.route-option {
	background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
	box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3) !important;
}

.route-option:hover {
	background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%) !important;
	box-shadow: 0 15px 35px rgba(245, 158, 11, 0.4) !important;
}

.about-section { background: #fefefe; padding: 80px 20px; position: relative; }
.about-container { max-width: 800px; margin: 0 auto; }
.about-content { background: #fff; border-radius: 20px; padding: 60px 50px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); border: 1px solid #f0f0f0; }
.about-title { font-size: 2.8rem; color: #7c3aed; text-align: center; margin-bottom: 50px; font-weight: 400; line-height: 1.2; position: relative; }
.about-title::after { content: ''; position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%); width: 80px; height: 3px; background: #7c3aed; }
.intro-block { margin-bottom: 50px; }
.intro-text { font-size: 1.2rem; line-height: 1.8; color: #444; margin-bottom: 25px; text-align: center; }
.seo-block { margin-bottom: 60px; padding: 40px 0; border-top: 1px solid #f0f0f0; border-bottom: 1px solid #f0f0f0; }
.seo-subtitle { font-size: 2rem; color: #333; text-align: center; margin-bottom: 30px; font-weight: 600; }
.seo-text { font-size: 1.1rem; line-height: 1.7; color: #555; text-align: center; margin-bottom: 35px; }
.qualities { max-width: 600px; margin: 0 auto; }
.quality-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; padding: 15px 20px; background: #f8f9fa; border-radius: 12px; transition: all 0.3s ease; }
.quality-item:hover { background: #fff5f5; transform: translateX(10px); }
.quality-check { color: #7c3aed; font-weight: bold; font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.quality-item span:last-child { font-size: 1.1rem; color: #333; line-height: 1.5; }
.categories-block { padding-top: 40px; }
.categories-subtitle { font-size: 1.62rem; color: #333; text-align: center; margin-bottom: 20px; font-weight: 600; }
.categories-desc { font-size: 1.1rem; color: #666; text-align: center; margin-bottom: 40px; line-height: 1.6; }
.categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.category-tag { background: #fff; border: 2px solid #7c3aed; color: #7c3aed; padding: 15px 20px; border-radius: 25px; text-align: center; font-weight: 600; font-size: 1rem; transition: all 0.3s ease; cursor: default; }
.category-tag:hover { background: #7c3aed; color: #fff; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(124,58,237,0.3); }

.social-lightbox { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); z-index: 1000; align-items: center; justify-content: center; backdrop-filter: blur(5px); }
.social-lightbox-content { background: #fff; padding: 40px; border-radius: 20px; text-align: center; max-width: 400px; width: 90%; position: relative; animation: slideUp 0.3s ease; }
@keyframes slideUp { from { opacity: 0; transform: translateY(50px);} to { opacity: 1; transform: translateY(0);} }
.social-title { font-size: 1.62rem; font-weight: 400; margin-bottom: 30px; color: #7c3aed; }
.social-links { display: flex; flex-direction: column; gap: 15px; }
.social-link { display: flex; align-items: center; justify-content: center; padding: 15px 25px; border-radius: 12px; text-decoration: none; font-weight: 600; transition: all 0.3s ease; background: #fff; border: 2px solid #7c3aed; color: #7c3aed; font-size: 1.1rem; }
.social-link i { margin-right: 12px; font-size: 1.3rem; color: #7c3aed; }
.social-link:hover { transform: translateY(-2px); box-shadow: 0 6px 15px rgba(124,58,237,0.2); background: #7c3aed; color: #fff; }
.social-link:hover i { color: #fff; }
.close-btn { position: absolute; top: 15px; right: 20px; font-size: 1.35rem; background: none; border: none; cursor: pointer; color: #7c3aed; width: 35px; height: 35px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.close-btn:hover { background: #f0f0f0; }

.footer-contact { position: fixed; bottom: 30px; right: 30px; z-index: 1000; }
.floating-contact-btn { display: flex; align-items: center; justify-content: center; width: 70px; height: 70px; background: #7c3aed; color: #fff; border: none; border-radius: 50%; cursor: pointer; box-shadow: 0 5px 15px rgba(124,58,237,0.4); transition: all 0.3s ease; font-size: 1.35rem; position: relative; animation: pulse 2s infinite; }
.floating-contact-btn:hover { transform: scale(1.1); animation: none; }
.social-dropdown { position: absolute; bottom: 85px; right: 0; background: #f3f4f6; backdrop-filter: blur(10px); border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); padding: 20px; width: 250px; opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.3s ease; }
.social-dropdown.active { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-title { font-size: 1.02rem; color: #7c3aed; margin-bottom: 15px; font-weight: 600; text-align: center; }
.social-item { display: flex; align-items: center; padding: 15px; border-radius: 12px; margin-bottom: 10px; cursor: pointer; transition: all 0.2s ease; color: #333; text-decoration: none; font-size: 0.85rem; }
.social-item:hover { background: rgba(124,58,237,0.1); transform: translateX(5px); }
.social-item i { width: 30px; font-size: 1.2rem; color: #7c3aed; }
.social-item span { font-weight: 500; }

.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: 2000; justify-content: center; align-items: center; }
.modal-content { background: #fff; border-radius: 25px; padding: 40px 30px; max-width: 500px; width: 90%; box-shadow: 0 20px 50px rgba(0,0,0,0.3); position: relative; animation: modalAppear 0.5s ease-out; }
@keyframes modalAppear { from { opacity: 0; transform: scale(0.8);} to { opacity: 1; transform: scale(1);} }
.modal-title { font-size: 1.35rem; color: #7c3aed; margin-bottom: 20px; text-align: center; font-weight: 400; }
.input-group { margin-bottom: 25px; }
.address-input { width: 100%; padding: 18px 20px; border: 2px solid #e0e0e0; border-radius: 15px; font-size: 1rem; transition: border-color 0.3s ease; }
.address-input:focus { border-color: #7c3aed; outline: none; }
.modal-buttons { display: flex; gap: 15px; }
.action-btn { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); color: #fff; border: none; padding: 18px 25px; font-size: 1rem; font-weight: 400; cursor: pointer; transition: all 0.3s ease; border-radius: 50px; flex: 1; }
.action-btn:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4); background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%); }
.back-btn { background: rgba(124,58,237,0.1); color: #7c3aed; border: 2px solid #7c3aed; border-radius: 50px; padding: 18px 25px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease; flex: 1; }
.back-btn:hover { background: rgba(124,58,237,0.2); }


/* Tablet adjustments for categories grid */
@media (max-width: 1024px) and (min-width: 769px) {
	.categories-grid { 
		grid-template-columns: repeat(3, 1fr); 
		gap: 16px; 
	}
}

/* Responsive adjustments for home sections */
@media (max-width: 768px) {
	.hero-image { height: 70vh; background-size: cover; }
	.desserts-section { padding: 40px 15px; }
	.section-title, 
	.categories-title, 
	.reviews-title, 
	.delivery-title { 
		font-size: 1.35rem; 
		margin-bottom: 40px;
		letter-spacing: 1px;
	}
	.slider-container { gap: 20px; padding: 30px 15px 30px 15px; align-items: center; }
	.dessert-card { min-width: 140px; height: 140px; }
	.dessert-card.instagram-new::after { width: 10px; height: 10px; top: 6px; right: 6px; }
	.dessert-card .card-content h3 { font-size: 0.9rem; }
	.category-section { padding: 40px 0; }
	.category-title { font-size: 1.8rem; }
	.category-view-all-link { font-size: 0.95rem; }
	.categories-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; padding: 0 15px; }
	.category-image { height: 220px; }
	.category-name { padding: 12px; padding-left: 15px; font-size: 1.4rem; }
	.banner-section { padding: 30px 15px; }
	.banner { padding: 35px 25px; }
	.banner-title { font-size: 1.35rem; }
	.banner-subtitle { font-size: 1.2rem; max-width: 100%; }
	.send-photo-btn { padding: 16px 40px; font-size: 1.1rem; }
	.reviews-section { padding: 40px 15px; }
	.reviews-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
	.review-card { 
		padding: 16px; 
	}
	.review-avatar {
		width: 36px;
		height: 36px;
		font-size: 1rem;
	}
	.review-name {
		font-size: 0.95rem;
	}
	.review-stars {
		font-size: 0.9rem;
		margin-bottom: 10px;
	}
	.review-text {
		font-size: 0.9rem;
	}
	.review-btn { padding: 10px 25px; font-size: 1rem; }
	.order-section { padding: 50px 15px; }
	.steps-container { grid-template-columns: 1fr; gap: 25px; }
	.step { padding: 30px 25px; }
	.step-title { font-size: 1.6rem; }
	.step-text { font-size: 1rem; }
	.step-number { width: 55px; height: 55px; font-size: 1.3rem; margin-bottom: 15px; }
	.delivery-section { padding: 50px 15px; }
	.services-wrapper { flex-direction: column; }
	.service-item { padding: 30px 25px; }
	.route-section { margin-top: 120px; margin-bottom: 30px; padding: 35px 25px; }
	.service-title { font-size: 1.6rem; }
	.route-title { font-size: 1.6rem; }
	.route-option { width: 100%; justify-content: center; }
	.modal-buttons { flex-direction: column; }
	.footer-contact { bottom: 80px; right: 20px; }
	.floating-contact-btn { width: 60px; height: 60px; font-size: 1.3rem; }
	.social-dropdown { width: 220px; right: -10px; bottom: 110px; }
}
@media (max-width: 480px) {
	.hero-image { height: 60vh; background-size: cover; }
	.footer-contact { bottom: 50px; right: 15px; }
	.social-dropdown { width: 200px; right: -5px; bottom: 70px; }
	.desserts-section { padding: 30px 10px; }
	.section-title, 
	.categories-title, 
	.reviews-title, 
	.delivery-title { 
		font-size: 1.62rem; 
		margin-bottom: 30px;
		letter-spacing: 1px;
	}
	.slider-container { gap: 15px; padding: 25px 10px 25px 10px; align-items: center; }
	.dessert-card { min-width: 120px; height: 120px; }
	.dessert-card.instagram-new::after { width: 8px; height: 8px; top: 5px; right: 5px; }
	.dessert-card .card-content h3 { font-size: 0.8rem; }
	.category-section { padding: 40px 0; }
	.category-title { font-size: 1.8rem; }
	.category-view-all-link { font-size: 0.9rem; }
	.categories-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 8px; padding: 0 10px; }
	.category-image { height: 200px; }
	.category-name { padding: 10px; padding-left: 15px; font-size: 1.4rem; }
	.banner-section { padding: 25px 10px; }
	.banner { padding: 30px 20px; border-radius: 24px; }
	.banner-title { font-size: 1.62rem; }
	.banner-subtitle { font-size: 1.1rem; max-width: 100%; }
	.send-photo-btn { padding: 14px 35px; font-size: 1rem; }
	.reviews-section { padding: 30px 10px; }
	.reviews-grid { grid-template-columns: 1fr; gap: 20px; }
	.review-card { 
		padding: 14px; 
	}
	.review-avatar {
		width: 32px;
		height: 32px;
		font-size: 0.9rem;
	}
	.review-name {
		font-size: 0.9rem;
	}
	.review-stars {
		font-size: 0.85rem;
		margin-bottom: 8px;
	}
	.review-text {
		font-size: 0.85rem;
	}
	.reviews-buttons { flex-direction: column; align-items: center; }
	.review-btn { width: 100%; max-width: 300px; }
	.order-section { padding: 40px 10px; }
	.step { padding: 25px 20px; }
	.step-title { font-size: 1.4rem; }
	.step-text { font-size: 1rem; }
	.step-number { width: 50px; height: 50px; font-size: 1.2rem; margin-bottom: 12px; }
	.delivery-section { padding: 40px 10px; }
	.route-section { margin-top: 100px; margin-bottom: 25px; padding: 30px 20px; }
	.route-title { font-size: 1.4rem; }
	.service-item { padding: 25px 20px; }
	.service-title { font-size: 1.4rem; }
	.about-content { padding: 30px 20px; }
	.about-title { font-size: 1.62rem; }
	.seo-block { padding: 30px 0; }
	.categories-subtitle { font-size: 1.35rem; }
	.categories-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 360px) { 
	.hero-image { height: 50vh; background-size: cover; } 
}

/* Additional mobile fixes for overflow and responsiveness */
@media (max-width: 768px) {
	/* Prevent horizontal overflow */
	body {
		overflow-x: hidden;
	}
	
	.hero-image {
		max-height: 60vh;
		background-size: cover;
	}
	
	.desserts-section,
	.categories-section,
	.banner-section,
	.reviews-section,
	.delivery-section {
		padding-left: 10px;
		padding-right: 10px;
	}
	
	/* Ensure slider doesn't cause horizontal scroll */
	.slider-container {
		padding-left: 10px;
		padding-right: 10px;
		align-items: center;
	}
}

@media (max-width: 480px) {
	.hero-image {
		max-height: 50vh;
	}
	
	.desserts-section,
	.categories-section,
	.banner-section,
	.reviews-section,
	.delivery-section {
		padding-left: 5px;
		padding-right: 5px;
	}
	
	.slider-container {
		padding-left: 5px;
		padding-right: 5px;
		align-items: center;
	}
	
	/* Fix category grid for very small screens - keep 2 columns */
	.categories-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}
}

/* Desktop: уменьшенная высота поля с названиями категорий - должно быть в конце */
@media (min-width: 769px) {
	.category-name {
		padding: 12px 20px 12px 15px !important;
		font-size: 1.4rem !important;
	}
}

/* SEO Content Section Styles - Magazine Layout */
.seo-content-section {
	background: #fafafa;
	padding: 80px 20px;
	margin-top: 60px;
	border-top: 3px solid #fbbf24;
}

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

.seo-title {
	font-size: 3rem;
	font-weight: 700;
	color: #000000;
	text-align: center;
	margin-bottom: 15px;
	line-height: 1.1;
	letter-spacing: -0.02em;
}

.seo-subtitle {
	font-size: 1.3rem;
	color: #666666;
	text-align: center;
	margin-bottom: 50px;
	font-weight: 400;
	font-style: italic;
}

.seo-text {
	font-size: 1.1rem;
	line-height: 1.9;
	color: #2c2c2c;
	column-count: 2;
	column-gap: 40px;
	text-align: justify;
}

.seo-intro {
	margin-bottom: 30px;
}

/* Drop cap - крупная первая буква */
.seo-intro::first-letter {
	float: left;
	font-size: 5rem;
	line-height: 0.8;
	font-weight: 700;
	color: #fbbf24;
	margin: 10px 15px 0 0;
	font-family: Georgia, serif;
}

.seo-toggle-btn {
	column-span: all;
	background: #000000;
	border: 2px solid #000000;
	border-radius: 0;
	padding: 15px 40px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 30px auto;
	color: #ffffff;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.seo-toggle-btn:hover {
	background: #fbbf24;
	border-color: #fbbf24;
	color: #000000;
	transform: scale(1.02);
}

.toggle-icon {
	transition: transform 0.3s ease;
}

.seo-expanded-content {
	display: none;
}

.seo-text p {
	margin-bottom: 25px;
	break-inside: avoid;
}

/* Специальный класс для абзацев на 2 колонки */
.seo-two-columns {
	column-span: all;
	column-count: 2;
	column-gap: 40px;
	text-align: justify;
}

/* Цитаты в журнальном стиле */
.seo-highlight {
	column-span: all;
	font-weight: 400;
	font-size: 1.8rem;
	color: #000000;
	text-align: center;
	margin: 40px 0;
	padding: 40px 60px;
	background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
	border-radius: 0;
	position: relative;
	font-style: italic;
	line-height: 1.4;
}

.seo-highlight::before {
	content: '"';
	font-size: 6rem;
	position: absolute;
	top: 10px;
	left: 20px;
	color: rgba(0, 0, 0, 0.1);
	font-family: Georgia, serif;
}

.seo-highlight::after {
	content: '"';
	font-size: 6rem;
	position: absolute;
	bottom: -20px;
	right: 20px;
	color: rgba(0, 0, 0, 0.1);
	font-family: Georgia, serif;
}

.seo-text h2 {
	column-span: all;
	font-size: 2.2rem;
	font-weight: 700;
	color: #000000;
	margin: 50px 0 30px 0;
	text-align: center;
	position: relative;
	letter-spacing: -0.01em;
}

.seo-text h2::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: #fbbf24;
}

.seo-categories {
	column-span: all;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin: 50px 0;
}

.seo-category {
	background: #ffffff;
	padding: 35px;
	border-radius: 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	border-left: 5px solid #fbbf24;
	transition: all 0.3s ease;
}

.seo-category:hover {
	transform: translateX(5px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	border-left-width: 8px;
}

.seo-category h3 {
	font-size: 1.6rem;
	font-weight: 700;
	color: #000000;
	margin-bottom: 15px;
	text-align: left;
	letter-spacing: -0.01em;
}

.seo-category p {
	font-size: 1.05rem;
	line-height: 1.7;
	color: #555555;
	margin: 0;
	text-align: left;
}

.seo-steps {
	margin: 30px 0;
}

.seo-step {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 25px;
	padding: 20px;
	background: var(--white, #ffffff);
	border-radius: 12px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	border-left: 4px solid var(--primary-purple, #7c3aed);
}

.step-number {
	background: linear-gradient(135deg, var(--primary-purple, #7c3aed), var(--primary-purple-dark, #5b21b6));
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 400;
	font-size: 1.1rem;
	flex-shrink: 0;
}

.step-content h4 {
	font-size: 1.2rem;
	font-weight: 400;
	color: var(--primary-purple, #7c3aed);
	margin-bottom: 8px;
}

.step-content p {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--gray-600, #4b5563);
	margin: 0;
}

.seo-advantages {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin: 30px 0;
}

.advantage {
	background: var(--white, #ffffff);
	padding: 20px;
	border-radius: 12px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	text-align: center;
	transition: all 0.3s ease;
}

.advantage:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(124, 58, 237, 0.1);
}

.advantage h4 {
	font-size: 1.1rem;
	font-weight: 400;
	color: var(--primary-purple, #7c3aed);
	margin-bottom: 10px;
}

.advantage p {
	font-size: 0.95rem;
	line-height: 1.5;
	color: var(--gray-600, #4b5563);
	margin: 0;
}

.seo-cta {
	column-span: all;
	background: #ffffff;
	color: #000000;
	padding: 50px;
	border-radius: 0;
	text-align: center;
	margin-top: 50px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	border-top: 3px solid #fbbf24;
	border-bottom: 3px solid #fbbf24;
}

.seo-cta h3 {
	font-size: 2rem;
	font-weight: 700;
	color: #000000;
	margin-bottom: 20px;
	text-align: center;
	letter-spacing: -0.01em;
}

.seo-cta p {
	font-size: 1.15rem;
	line-height: 1.7;
	margin-bottom: 15px;
	color: #333333;
	text-align: center;
}

.seo-tags {
	font-size: 0.9rem;
	opacity: 0.6;
	font-style: italic;
	margin: 0;
	color: #666666;
	text-align: center;
}

/* Mobile responsive for SEO section */
@media (max-width: 768px) {
	.seo-content-section {
		padding: 40px 15px 30px 15px;
		margin-top: 40px;
	}
	
	.seo-content {
		padding: 0 15px;
	}
	
	.seo-title {
		font-size: 2rem;
		margin-bottom: 15px;
		line-height: 1.2;
	}
	
	.seo-subtitle {
		font-size: 1.1rem;
		margin-bottom: 30px;
	}
	
	.seo-text {
		font-size: 1rem;
		line-height: 1.7;
		column-count: 1;
		text-align: left;
	}
	
	.seo-intro::first-letter {
		font-size: 4rem;
		margin: 5px 10px 0 0;
	}
	
	.seo-two-columns {
		column-count: 1;
		text-align: left;
	}
	
	.seo-text h2 {
		font-size: 1.6rem;
		margin: 40px 0 20px 0;
	}
	
	.seo-highlight {
		font-size: 1.3rem;
		padding: 30px 20px;
		margin: 30px 0;
	}
	
	.seo-highlight::before,
	.seo-highlight::after {
		font-size: 4rem;
	}
	
	.seo-categories {
		grid-template-columns: 1fr;
		gap: 20px;
		margin: 30px 0;
	}
	
	.seo-category {
		padding: 25px;
	}
	
	.seo-category h3 {
		font-size: 1.4rem;
		margin-bottom: 12px;
	}
	
	.seo-category p {
		font-size: 1rem;
		line-height: 1.6;
	}
	
	.seo-advantages {
		grid-template-columns: 1fr;
		gap: 12px;
		margin: 20px 0;
	}
	
	.advantage {
		padding: 15px;
	}
	
	.advantage h4 {
		font-size: 1rem;
		margin-bottom: 8px;
	}
	
	.advantage p {
		font-size: 0.85rem;
		line-height: 1.4;
	}
	
	.seo-cta {
		padding: 25px 15px;
		margin-top: 30px;
	}
	
	.seo-cta h3 {
		font-size: 1.3rem;
		margin-bottom: 15px;
	}
	
	.seo-cta p {
		font-size: 1rem;
		line-height: 1.5;
		margin-bottom: 10px;
	}
	
	.seo-tags {
		font-size: 0.8rem;
	}
}

@media (max-width: 480px) {
	.seo-content-section {
		padding: 30px 10px 20px 10px;
		margin-top: 30px;
		margin-left: 0;
		margin-right: 0;
	}
	
	.seo-content {
		padding: 0 10px;
	}
	
	.seo-title {
		font-size: 1.6rem;
		margin-bottom: 12px;
	}
	
	.seo-subtitle {
		font-size: 0.9rem;
		margin-bottom: 20px;
	}
	
	.seo-text {
		font-size: 0.95rem;
		line-height: 1.5;
	}
	
	.seo-text h2 {
		font-size: 1.2rem;
		margin: 25px 0 12px 0;
	}
	
	.seo-highlight {
		font-size: 1rem;
		padding: 12px;
		margin: 15px 0;
	}
	
	.seo-categories {
		grid-template-columns: 1fr;
		gap: 12px;
		margin: 15px 0;
	}
	
	.seo-category {
		padding: 12px;
	}
	
	.seo-category h3 {
		font-size: 1rem;
		margin-bottom: 8px;
	}
	
	.seo-category p {
		font-size: 0.85rem;
		line-height: 1.4;
	}
	
	.seo-advantages {
		gap: 10px;
		margin: 15px 0;
	}
	
	.advantage {
		padding: 12px;
	}
	
	.advantage h4 {
		font-size: 0.95rem;
		margin-bottom: 6px;
	}
	
	.advantage p {
		font-size: 0.8rem;
		line-height: 1.3;
	}
	
	.seo-cta {
		padding: 20px 12px;
		margin-top: 25px;
	}
	
	.seo-cta h3 {
		font-size: 1.2rem;
		margin-bottom: 12px;
	}
	
	.seo-cta p {
		font-size: 0.9rem;
		line-height: 1.4;
		margin-bottom: 8px;
	}
	
	.seo-tags {
		font-size: 0.75rem;
	}
}

/* === Page Styles === */
.page-section {
	padding: 24px 0 80px 0;
	background: linear-gradient(135deg, var(--white, #ffffff) 0%, var(--gray-50, #f9fafb) 100%);
}

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

.page-header {
	text-align: center;
	padding: 40px 0;
	background: linear-gradient(135deg, rgba(124, 58, 237, 0.03) 0%, rgba(251, 191, 36, 0.03) 100%);
}

.page-title {
	font-size: 1.8rem;
	font-weight: 600;
	color: #000000;
	text-align: center;
	margin-bottom: 10px;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.page-subtitle {
	font-size: 1.3rem;
	color: var(--gray-600);
	font-weight: 500;
	text-align: center;
	margin: 0;
	line-height: 1.4;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}


.page-text {
	font-size: 1.1rem;
	line-height: 1.7;
	color: var(--gray-700, #374151);
	text-align: center;
}

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

/* About Page Styles */
.about-features {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin: 50px 0;
}

.feature-card {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(124, 58, 237, 0.1);
	border-radius: 20px;
	padding: 30px;
	text-align: center;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 40px rgba(124, 58, 237, 0.2);
}

.feature-icon {
	width: 80px;
	height: 80px;
	background: white;
	border: 2px solid var(--primary-purple, #7c3aed);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
}

.feature-icon i {
	font-size: 2rem;
	color: var(--primary-purple, #7c3aed);
}

.feature-card h3 {
	font-size: 1.4rem;
	font-weight: 600;
	color: #000000;
	margin-bottom: 12px;
	padding-left: 15px;
	text-align: left;
}

.feature-card p {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--gray-600, #4b5563);
	margin: 0;
}

.about-story {
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(124, 58, 237, 0.1);
	border-radius: 20px;
	padding: 40px;
	margin-top: 50px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.about-story h2 {
	font-size: 1.6rem;
	font-weight: 600;
	color: #000000;
	margin-bottom: 16px;
	padding-left: 15px;
	text-align: left;
}

/* Contact Page Styles */
.contacts-title {
	background: linear-gradient(135deg, var(--primary-purple, #7c3aed) 0%, var(--primary-purple, #7c3aed) 100%) !important;
	-webkit-background-clip: text !important;
	-webkit-text-fill-color: transparent !important;
	background-clip: text !important;
}

.contacts-title::after {
	background: linear-gradient(135deg, var(--primary-purple, #7c3aed) 0%, var(--primary-purple, #7c3aed) 100%) !important;
}

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

.contact-card {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(124, 58, 237, 0.1);
	border-radius: 16px;
	padding: 25px;
	text-align: center;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.contact-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 32px rgba(124, 58, 237, 0.15);
}

.contact-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--primary-purple, #7c3aed) 0%, var(--primary-purple, #7c3aed) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 15px;
	box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
}

.contact-icon i {
	font-size: 1.35rem;
	color: white;
}

.contact-card h3 {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--gray-800, #1f2937);
	margin-bottom: 10px;
	text-align: center;
}

.contact-card p {
	margin: 0 0 8px 0;
}

.contact-card p a {
	color: var(--primary-purple, #7c3aed);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.contact-card p a:hover {
	color: var(--primary-yellow, #fbbf24);
}

.contact-note {
	font-size: 0.9rem;
	color: var(--gray-500, #6b7280);
	font-style: italic;
}

.contact-info {
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(124, 58, 237, 0.1);
	border-radius: 16px;
	padding: 30px;
	margin-top: 40px;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
	font-size: 1.35rem;
	font-weight: 600;
	color: var(--gray-800, #1f2937);
	margin-bottom: 15px;
	text-align: center;
}

/* Contact Location Styles */
.contact-location {
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(124, 58, 237, 0.1);
	border-radius: 16px;
	padding: 30px;
	margin-top: 40px;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.contact-location h2 {
	font-size: 1.35rem;
	font-weight: 600;
	color: var(--gray-800, #1f2937);
	margin-bottom: 20px;
	text-align: center;
}

.address-info {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.address-text {
	text-align: center;
}

.address-text p {
	font-size: 1.1rem;
	color: var(--gray-700, #374151);
	margin: 0;
}

.address-text i {
	color: var(--primary-purple, #7c3aed);
	margin-right: 8px;
}

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

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

/* Contact Location Styles */
.location-content {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.map-section {
	display: flex;
	flex-direction: column;
	gap: 15px;
	width: 100%;
}

/* Route Section Styles */
.route-section {
	background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%) !important;
	backdrop-filter: blur(10px);
	border: 2px solid rgba(124,58,237,0.3) !important;
	border-radius: 24px !important;
	padding: 50px 40px !important;
	margin-top: 0;
	box-shadow: 0 15px 35px rgba(124,58,237,0.3) !important;
}

.route-section h2 {
	font-size: 1.35rem;
	font-weight: 600;
	color: #ffffff !important;
	margin-bottom: 20px;
	text-align: center;
}

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

.route-btn {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 15px 25px;
	background: linear-gradient(135deg, var(--primary-purple, #7c3aed) 0%, var(--primary-yellow, #fbbf24) 100%);
	color: white;
	border: none;
	border-radius: 25px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
}

.route-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(124, 58, 237, 0.4);
}

.route-btn i {
	font-size: 1.2rem;
}

/* Modal Styles */
.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(5px);
	justify-content: center;
	align-items: center;
}

.modal-content {
	background: white;
	border-radius: 20px;
	padding: 0;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	max-width: 500px;
	width: 90%;
	overflow: hidden;
}

.modal-header {
	background: #7c3aed;
	color: white;
	padding: 20px 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.modal-header h3 {
	margin: 0;
	font-size: 1.3rem;
	font-weight: 600;
}

.close-btn {
	background: none;
	border: none;
	color: white;
	font-size: 2rem;
	cursor: pointer;
	padding: 0;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.3s ease;
}

.close-btn:hover {
	opacity: 0.7;
}

.modal-body {
	padding: 30px;
}

.modal-body input {
	width: 100%;
	padding: 15px 20px;
	border: 2px solid var(--gray-200, #e5e7eb);
	border-radius: 12px;
	font-size: 1rem;
	margin-bottom: 20px;
	transition: border-color 0.3s ease;
}

.modal-body input:focus {
	outline: none;
	border-color: var(--primary-purple, #7c3aed);
}

.modal-body button {
	width: 100%;
	padding: 15px 20px;
	background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
	color: white;
	border: none;
	border-radius: 12px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.modal-body button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(245, 158, 11, 0.4);
	background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
}

/* FAQ Page Styles */
.faq-list {
	margin: 40px 0;
}

.faq-item {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(124, 58, 237, 0.1);
	border-radius: 12px;
	margin-bottom: 15px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item:hover {
	box-shadow: 0 6px 24px rgba(124, 58, 237, 0.15);
}

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

.faq-question:hover {
	background: rgba(124, 58, 237, 0.05);
}

.faq-question h3 {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--gray-800, #1f2937);
	margin: 0;
}

.faq-question i {
	color: var(--primary-purple, #7c3aed);
	transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
	transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
	display: block;
}

.faq-answer p {
	margin: 0;
	color: var(--gray-600, #4b5563);
	line-height: 1.6;
}

/* How to Order Page Styles */
.order-steps {
	margin: 40px 0;
}

.step-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 30px;
	padding: 25px;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(124, 58, 237, 0.1);
	border-radius: 16px;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.step-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 32px rgba(124, 58, 237, 0.15);
}

.step-number {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--primary-purple, #7c3aed) 0%, var(--primary-purple-dark, #5b21b6) 100%);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 400;
	font-size: 1.2rem;
	flex-shrink: 0;
	box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
}

.step-content h3 {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--gray-800, #1f2937);
	margin-bottom: 10px;
}

.step-content p {
	color: var(--gray-600, #4b5563);
	line-height: 1.6;
	margin: 0;
}

.order-tips {
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(124, 58, 237, 0.1);
	border-radius: 20px;
	padding: 40px;
	margin-top: 50px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.order-tips h2 {
	font-size: 2rem;
	font-weight: 600;
	color: var(--gray-800, #1f2937);
	margin-bottom: 30px;
	text-align: center;
}

.tips-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 25px;
}

.tip-card {
	text-align: center;
	padding: 20px;
}

.tip-card i {
	font-size: 2.25rem;
	color: var(--primary-purple, #7c3aed);
	margin-bottom: 15px;
}

.tip-card h4 {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--gray-800, #1f2937);
	margin-bottom: 10px;
}

.tip-card p {
	color: var(--gray-600, #4b5563);
	line-height: 1.6;
	margin: 0;
}

/* Blog Page Styles */
.blog-coming-soon {
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(124, 58, 237, 0.1);
	border-radius: 20px;
	padding: 60px 40px;
	margin: 40px 0;
	text-align: center;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.coming-soon-icon {
	width: 100px;
	height: 100px;
	background: linear-gradient(135deg, var(--primary-purple, #7c3aed) 0%, var(--primary-yellow, #fbbf24) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 30px;
	box-shadow: 0 8px 32px rgba(124, 58, 237, 0.3);
}

.coming-soon-icon i {
	font-size: 3rem;
	color: white;
}

.coming-soon-content h2 {
	font-size: 2.25rem;
	font-weight: 400;
	color: var(--gray-800, #1f2937);
	margin-bottom: 20px;
}

.coming-soon-content > p {
	font-size: 1.2rem;
	color: var(--gray-600, #4b5563);
	margin-bottom: 40px;
}

.blog-topics {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin: 30px 0;
}

.topic-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 12px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.topic-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(124, 58, 237, 0.15);
}

.topic-item i {
	font-size: 1.35rem;
	color: var(--primary-purple, #7c3aed);
}

.topic-item span {
	font-weight: 500;
	color: var(--gray-700, #374151);
}

.blog-subscribe {
	margin-top: 40px;
	padding-top: 30px;
	border-top: 1px solid rgba(124, 58, 237, 0.1);
}

.blog-subscribe h3 {
	font-size: 1.35rem;
	font-weight: 600;
	color: var(--gray-800, #1f2937);
	margin-bottom: 15px;
}

.blog-subscribe p {
	color: var(--gray-600, #4b5563);
	margin-bottom: 25px;
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 20px;
}

.social-link {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 24px;
	background: linear-gradient(135deg, var(--primary-purple, #7c3aed) 0%, var(--primary-purple-dark, #5b21b6) 100%);
	color: white;
	text-decoration: none;
	border-radius: 25px;
	font-weight: 500;
	transition: all 0.3s ease;
	box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
}

.social-link:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(124, 58, 237, 0.4);
	text-decoration: none;
	color: white;
}

.social-link i {
	font-size: 1.2rem;
}

/* Mobile responsive for page styles */
@media (max-width: 768px) {
	.page-section {
		padding: 18px 0 60px 0;
	}
	
	.page-header {
		padding: 30px 0;
	}
	
	.page-title {
		font-size: 1.35rem;
		margin-bottom: 8px;
	}
	
	.page-subtitle {
		font-size: 1.1rem;
	}
	
	.page-content {
		padding: 0 15px;
	}
	
	.about-features {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
		margin: 30px 0;
	}
	
	.feature-card {
		padding: 20px;
	}
	
	.contact-methods {
		grid-template-columns: 1fr;
		gap: 20px;
		margin: 30px 0;
	}
	
	.contact-card {
		padding: 20px;
	}
	
	.step-item {
		flex-direction: column;
		text-align: center;
		gap: 15px;
		padding: 20px;
	}
	
	.tips-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.blog-coming-soon {
		padding: 40px 20px;
	}
	
	.coming-soon-content h2 {
		font-size: 2rem;
	}
	
	.blog-topics {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	.social-links {
		flex-direction: column;
		align-items: center;
	}
	
	/* Social lightbox mobile styles */
	.social-lightbox-content {
		padding: 30px 20px;
		max-width: 350px;
		width: 95%;
	}
	
	.social-title {
		font-size: 1.35rem;
		margin-bottom: 25px;
	}
	
	.social-link {
		width: 100%;
		height: 60px;
		padding: 15px 20px;
		font-size: 1rem;
		justify-content: center;
		display: flex;
		align-items: center;
		box-sizing: border-box;
	}
	
	.contact-location {
		padding: 20px;
		margin-top: 30px;
	}
	
	.map-container iframe {
		height: 250px;
	}
	
	.route-section {
		padding: 20px;
		margin-top: 30px;
	}
	
	.route-buttons {
		flex-direction: column;
		gap: 15px;
	}
	
	.route-btn {
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.location-content {
		gap: 20px;
	}
	
	.route-section {
		padding: 20px;
	}
}

@media (max-width: 480px) {
	.page-section {
		padding: 12px 0 40px 0;
	}
	
	.page-header {
		padding: 25px 0;
	}
	
	.page-title {
		font-size: 1.62rem;
		margin-bottom: 6px;
	}
	
	.page-subtitle {
		font-size: 1rem;
	}
	
	.page-content {
		padding: 0 10px;
	}
	
	.about-features {
		grid-template-columns: 1fr;
		gap: 15px;
		margin: 20px 0;
	}
	
	.feature-card {
		padding: 15px;
	}
	
	.contact-card {
		padding: 15px;
	}
	
	.location-content {
		gap: 15px;
	}
	
	.route-section {
		padding: 15px;
	}
	
	.step-item {
		padding: 15px;
	}
	
	.blog-coming-soon {
		padding: 30px 15px;
	}
	
	.coming-soon-content h2 {
		font-size: 1.6rem;
	}
	
	.contact-location {
		padding: 15px;
		margin-top: 25px;
	}
	
	.map-container iframe {
		height: 200px;
	}
}

/* Price decor block */
.price-decor {
	font-size: 1.2rem;
	color: #000000;
	font-weight: 400;
	text-align: center;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	margin: 0;
}

.price-decor strong {
	color: #000000;
	font-weight: 400;
	font-size: 1.2rem;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.quantity-info {
	font-size: 0.9rem;
	color: #000000;
	font-weight: 500;
	background: none;
	padding: 0;
	border-radius: 0;
	text-transform: none;
	letter-spacing: normal;
	box-shadow: none;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	margin: 0;
	text-align: center;
}

/* Detail button styles */
.detail-btn {
	display: flex;
	background: #ffffff;
	color: #000000;
	text-decoration: none;
	padding: 8px 20px;
	border-radius: 8px;
	font-weight: 400;
	font-size: 0.9rem;
	text-align: center;
	transition: all 0.3s ease;
	border: 2px solid var(--primary-purple);
	width: 100%;
	box-sizing: border-box;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	align-items: center;
	justify-content: center;
	height: 40px;
	line-height: 1;
	margin: 0;
}

.detail-btn:hover {
	background: var(--primary-purple);
	color: #ffffff;
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.detail-btn:active {
	transform: translateY(0);
}

.detail-btn:focus {
	outline: none;
	text-decoration: none;
}

.detail-btn:visited {
	text-decoration: none;
}

/* Card actions container */
.card-actions {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	justify-content: space-between;
}


/* Если только цена декора без количества */
.card-price-info.price-only {
	justify-content: flex-start;
}

.price-decor {
	font-size: 0.9rem;
	color: var(--gray-700);
}

.price-decor strong {
	color: #000000;
	font-weight: 600;
}

.quantity-info {
	font-size: 0.85rem;
	color: var(--primary-purple-dark, #5b21b6);
	font-weight: 600;
	background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
	border: 1px solid rgba(124, 58, 237, 0.2);
	padding: 6px 12px;
	border-radius: 8px;
	text-align: center;
	margin: 8px 0;
	box-shadow: 0 2px 4px rgba(124, 58, 237, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.quantity-info::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
	transition: left 0.5s ease;
}

.quantity-info:hover {
	background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(139, 92, 246, 0.08) 100%);
	border-color: rgba(124, 58, 237, 0.3);
	transform: translateY(-1px);
	box-shadow: 0 4px 8px rgba(124, 58, 237, 0.15);
}

.quantity-info:hover::before {
	left: 100%;
}

/* Mobile card price info */
@media (max-width: 768px) {
	.card-price-info {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
		padding: 10px;
	}
	
	.price-decor {
		font-size: 0.85rem;
	}
	
	.quantity-info {
		font-size: 0.75rem;
		padding: 4px 8px;
		margin: 6px 0;
	}
}

/* === Price Page Styles === */
.price-section {
	margin: 50px 0;
}

.filling-filters {
	margin: 30px 0;
	position: relative;
}

.filter-toggle {
	display: none;
}

.filter-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}

.filter-btn {
	padding: 10px 20px;
	border: 2px solid var(--primary-purple);
	background: #ffffff;
	color: #000000;
	border-radius: 25px;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.filter-btn:hover {
	background: var(--primary-purple);
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.filter-btn.active {
	background: var(--primary-purple);
	color: #ffffff;
	box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.fillings-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 20px;
	margin-top: 40px;
}

.filling-item {
	display: grid;
	grid-template-rows: auto auto auto auto;
	text-align: center;
	min-height: 320px; /* Минимальная высота для всех карточек */
}

.filling-image {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 100%; /* Делаем квадрат */
	overflow: hidden;
	border-radius: 12px;
	border: 1px solid var(--primary-purple);
	background: #ffffff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	grid-row: 1;
}

.filling-image:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.filling-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.premium-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, var(--primary-yellow, #fbbf24), var(--primary-yellow-dark, #f59e0b));
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.premium-badge i {
    color: #ffffff;
}

.filling-title {
	margin: 12px 0 8px 0;
	font-size: 1rem;
	font-weight: 400;
	color: #000000;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	line-height: 1.3;
	text-align: center;
	grid-row: 2;
	height: 2.6em; /* Фиксированная высота для выравнивания */
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}

.filling-description {
	margin: 0 0 12px 0;
	font-size: 0.8rem;
	color: var(--gray-600);
	line-height: 1.4;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	text-align: center;
	grid-row: 3;
	min-height: 3em; /* Минимальная высота для выравнивания */
	max-height: 8em; /* Максимальная высота для длинных описаний */
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 6; /* Увеличиваем количество строк до 6 */
	line-clamp: 6;
	-webkit-box-orient: vertical;
}

.filling-price {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 8px;
	background: var(--gray-50);
	border-radius: 8px;
	grid-row: 4;
}

.price-value {
	font-size: 2.25rem;
	font-weight: 400;
	color: #000000;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Мобильная версия - выпадающее меню */
@media (max-width: 768px) {
	.filter-toggle {
		display: block;
		margin-bottom: 15px;
	}
	
	.filter-toggle-btn {
		width: 100%;
		padding: 15px 20px;
		border: 2px solid var(--primary-purple);
		background: #ffffff;
		color: #000000;
		border-radius: 12px;
		font-size: 1rem;
		font-weight: 600;
		cursor: pointer;
		transition: all 0.3s ease;
		font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
		display: flex;
		justify-content: space-between;
		align-items: center;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	}
	
	.filter-toggle-btn:hover {
		background: var(--primary-purple);
		color: #ffffff;
		transform: translateY(-2px);
		box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
	}
	
	.filter-toggle-icon {
		transition: transform 0.3s ease;
		font-size: 0.9rem;
	}
	
	.filter-toggle-btn.active .filter-toggle-icon {
		transform: rotate(180deg);
	}
	
	.filter-buttons {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #ffffff;
		border: 2px solid var(--primary-purple);
		border-radius: 12px;
		box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
		z-index: 100;
		padding: 15px;
		flex-direction: column;
		gap: 8px;
		margin-top: 5px;
	}
	
	.filter-buttons.show {
		display: flex;
	}
	
	.filter-buttons .filter-btn {
		width: 100%;
		text-align: center;
		border-radius: 8px;
		padding: 12px 16px;
		font-size: 0.9rem;
	}
	
	.filling-item {
		grid-template-rows: auto auto auto auto;
		min-height: 350px; /* Минимальная высота для мобильной версии */
	}
	
	.filling-description {
		min-height: 2.8em; /* Минимальная высота для мобильной версии */
		max-height: 9em; /* Максимальная высота для мобильной версии */
		-webkit-line-clamp: 7; /* 7 строк для мобильной версии */
		line-clamp: 7;
	}
	
	.price-section {
		margin: 30px 0;
	}
	
	.fillings-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
		margin-top: 30px;
	}
	
	.filling-title {
		font-size: 0.9rem;
	}
	
	.filling-description {
		font-size: 0.75rem;
	}
	
	.price-value {
		font-size: 1.62rem;
	}
}

@media (max-width: 480px) {
	.price-section {
		margin: 20px 0;
	}
	
	.fillings-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
		margin-top: 20px;
	}
	
	.filling-item {
		min-height: 320px; /* Минимальная высота для очень маленьких экранов */
	}
	
	.filling-title {
		font-size: 0.85rem;
		height: 2.4em; /* Фиксированная высота для очень маленьких экранов */
	}
	
	.filling-description {
		font-size: 0.7rem;
		min-height: 2.6em; /* Минимальная высота для очень маленьких экранов */
		max-height: 8em; /* Максимальная высота для очень маленьких экранов */
		-webkit-line-clamp: 6; /* 6 строк для очень маленьких экранов */
		line-clamp: 6;
	}
	
	.price-value {
		font-size: 1.35rem;
	}
}

/* === Cart Styles === */
.cart-container {
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
}

.cart-item-card {
	background: var(--white);
	border-radius: 12px;
	box-shadow: var(--shadow-md);
	margin-bottom: 16px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.cart-item-card:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-2px);
}

.cart-item-main {
	display: flex;
	align-items: center;
	padding: 16px;
	cursor: pointer;
	gap: 16px;
}

.item-image {
	flex-shrink: 0;
}

.item-thumb {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 8px;
}

.item-info {
	flex: 1;
	min-width: 0;
}

.item-name {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--gray-900);
	margin: 0 0 8px 0;
}

.item-price {
	font-size: 1.2rem;
	font-weight: 400;
	color: #000000;
}

.item-actions {
	display: flex;
	gap: 8px;
}

.remove-btn {
	background: #ef4444;
	color: white;
	border: none;
	border-radius: 6px;
	padding: 8px 12px;
	cursor: pointer;
	transition: background-color 0.2s;
}

.remove-btn:hover {
	background: #dc2626;
}

.cart-item-details {
	padding: 0 16px 16px 16px;
	border-top: 1px solid var(--gray-200);
	background: var(--gray-50);
}

.details-content {
	padding-top: 16px;
}

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

.detail-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.detail-label {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--gray-700);
}

.detail-value {
	font-size: 0.875rem;
	color: var(--gray-900);
}

.editable .detail-value {
	display: flex;
	align-items: center;
	gap: 8px;
}

.quantity-controls,
.weight-controls {
	display: flex;
	align-items: center;
	gap: 8px;
}

.qty-btn,
.weight-btn {
	background: var(--primary-purple);
	color: white;
	border: none;
	border-radius: 4px;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background-color 0.2s;
}

.qty-btn:hover,
.weight-btn:hover {
	background: var(--primary-purple-dark);
}

.qty-value,
.weight-value {
	font-weight: 600;
	min-width: 40px;
	text-align: center;
}

.total-price-item {
	grid-column: 1 / -1;
	padding-top: 12px;
	border-top: 1px solid var(--gray-200);
	margin-top: 8px;
}

.total-price-item .detail-label {
	font-size: 1rem;
	font-weight: 600;
}

.total-price-value {
	font-size: 1.2rem;
	font-weight: 400;
	color: #000000;
}

.price-detail {
	font-size: 0.8rem;
	color: var(--gray-600);
	margin-bottom: 2px;
}

.cart-total-card {
	background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-dark));
	color: white;
	border-radius: 12px;
	padding: 24px;
	margin: 24px 0;
	text-align: center;
}

.total-content h3 {
	margin: 0 0 8px 0;
	font-size: 1.1rem;
	font-weight: 600;
}

.total-amount {
	font-size: 2rem;
	font-weight: 400;
}

.order-button-container {
	text-align: center;
	margin: 24px 0;
}

.order-btn {
	background: linear-gradient(135deg, var(--primary-yellow), var(--primary-yellow-dark));
	color: var(--gray-900);
	border: none;
	border-radius: 12px;
	padding: 16px 32px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.order-btn:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

/* Mobile styles for cart */
@media (max-width: 768px) {
	.cart-container {
		padding: 12px;
	}
	
	.cart-item-main {
		padding: 12px;
		gap: 12px;
	}
	
	.item-thumb {
		width: 60px;
		height: 60px;
	}
	
	.item-name {
		font-size: 1rem;
	}
	
	.item-price {
		font-size: 1.1rem;
	}
	
	.item-details-grid {
		grid-template-columns: 1fr;
		gap: 8px;
	}
	
	.cart-total-card {
		padding: 20px;
	}
	
	.total-amount {
		font-size: 1.35rem;
	}
}

/* Стили для наборов */
.sets-config-section {
	margin-bottom: 24px;
	padding: 20px;
	background: #f8fafc;
	border-radius: 12px;
	border: 1px solid #e2e8f0;
}

.sets-config-section h3 {
	margin: 0 0 16px 0;
	color: #000000;
	font-size: 1.1rem;
	font-weight: 600;
}

.radio-group {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.radio-label {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	padding: 12px 16px;
	background: white;
	border: 2px solid #e2e8f0;
	border-radius: 8px;
	transition: all 0.2s ease;
	flex: 1;
	min-width: 120px;
}

.radio-label:hover {
	border-color: var(--primary-purple-light);
	background: #faf5ff;
}

.radio-label input[type="radio"] {
	margin: 0;
	width: 16px;
	height: 16px;
	accent-color: #000000;
}

.radio-label input[type="radio"]:checked + span {
	color: #000000;
	font-weight: 600;
}

.radio-label:has(input[type="radio"]:checked) {
	border-color: #000000;
	background: #faf5ff;
	box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

#sets-dynamic-fields {
	margin-top: 20px;
	padding: 20px;
	background: white;
	border-radius: 12px;
	border: 1px solid #e2e8f0;
}

#sets-dynamic-fields h4 {
	margin: 0 0 16px 0;
	color: var(--gray-700);
	font-size: 1rem;
	font-weight: 600;
}

/* Мобильные стили для наборов */
@media (max-width: 768px) {
	.sets-config-section {
		padding: 16px;
		margin-bottom: 16px;
	}
	
	.radio-group {
		flex-direction: column;
		gap: 12px;
	}
	
	.radio-label {
		min-width: auto;
		justify-content: center;
	}
	
	#sets-dynamic-fields {
		padding: 16px;
	}
}

/* Mobile Menu Styles */
.menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 9999;
	display: none;
	backdrop-filter: blur(5px);
}

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

.menu-content {
	position: absolute;
	top: 0;
	right: 0;
	width: 300px;
	height: 100%;
	background: #f3f4f6;
	box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
	overflow-y: auto;
	transform: translateX(100%);
	transition: transform 0.3s ease;
}

.menu-overlay.active .menu-content {
	transform: translateX(0);
}

.menu-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	border-bottom: 1px solid #e5e7eb;
}

.menu-close {
	background: none;
	border: none;
	font-size: 24px;
	color: #333;
	cursor: pointer;
	padding: 8px;
}

.menu-sections {
	padding: 20px;
}

.menu-section {
	margin-bottom: 30px;
}

.section-title {
	font-size: 18px;
	font-weight: 600;
	color: #333;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 2px solid #e5e7eb;
}

.menu-link {
	display: flex;
	align-items: center;
	padding: 12px 0;
	color: #333;
	text-decoration: none;
	font-size: 16px;
	transition: color 0.2s ease;
}

.menu-link:hover {
	color: #000;
	text-decoration: none;
}

.menu-link i {
	margin-right: 12px;
	font-size: 18px;
	color: #7c3aed;
}

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

.menu-logo-link {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: #333;
}

.menu-logo-photo {
	width: 40px;
	height: 40px;
	margin-right: 12px;
}

.menu-logo-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.menu-logo-text {
	display: flex;
	flex-direction: column;
}

.menu-logo-title {
	font-size: 18px;
	font-weight: 600;
	color: #333;
	line-height: 1;
}

.menu-logo-subtitle {
	font-size: 12px;
	color: #666;
	line-height: 1;
	margin-top: 2px;
}

