/* Модерна начална страница - CSS стилове */

/* Основни променливи - същите като в продуктовата страница */
:root {
    --primary-color: #fcb900;
    --primary-hover: #e6a600;
    --text-color: #333;
    --text-light: #666;
    --text-muted: #999;
    --border-color: #e9ecef;
    --bg-light: #f8f9fa;
    --bg-white: #fff;
    --shadow-light: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 15px rgba(0,0,0,0.15);
    --shadow-heavy: 0 8px 30px rgba(0,0,0,0.2);
    --border-radius: 12px;
    --border-radius-small: 8px;
    --transition: all 0.3s ease;
    --base-font-size: 16px;
    --error-color: #dc3545;
    --success-color: #28a745;
    --warning-color: #ffc107;
}

/* Hero секция */
.modern-hero {
	position: relative;
	min-height: 500px;
	max-height: 800px;
	overflow: hidden;
	background: #f8f9fa;
	display: flex;
	justify-content: center;
	align-items: center;
}

.modern-hero .container {
	max-width: 1800px;
	width: 100%;
	height: 100%;
	position: relative;
}

.hero-slider {
	position: relative;
	width: 100%;
	max-width: 1800px;
	height: 690px;
	margin: 0 auto;
}

@media (max-width: 768px) {
	.modern-hero {
		height: auto;
		min-height: auto;
		max-height: none;
		overflow: visible;
	}
	
	.modern-hero .container {
		max-width: 100%;
		height: auto;
	}
	
	.hero-slider {
		height: auto;
		max-width: 100%;
	}
}



.hero-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
	opacity: 1;
}

@media (max-width: 768px) {
	.hero-slide {
		position: relative;
		width: 100%;
		height: auto;
		min-height: auto;
		opacity: 1;
		margin-bottom: 1rem;
	}
	
	.hero-slide:last-child {
		margin-bottom: 0;
	}
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

@media (max-width: 768px) {
	.hero-background {
		position: relative;
		height: auto;
	}
}

.hero-image {
	width: 100%;
	/*height: 100%;*/
	object-fit: cover;
	object-position: center;
}

.hero-content {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%);
}

@media (max-width: 768px) {
	.hero-content {
		height: auto;
		padding: 2rem 0;
		align-items: flex-start;
	}
}

.hero-text {
	color: white;
	max-width: 600px;
	animation: slideInUp 1s ease-out;
}

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

.hero-subtitle {
	font-size: 1.3rem;
	margin-bottom: 2rem;
	opacity: 0.9;
	line-height: 1.4;
}

.hero-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	border-radius: 50px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 1.1rem;
}

.btn-hero-primary {
	background: #ff6b6b;
	color: white;
	box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.btn-hero-primary:hover {
	background: #ff5252;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
	color: white;
	text-decoration: none;
}

.btn-hero-secondary {
	background: rgba(255, 255, 255, 0.2);
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
	background: rgba(255, 255, 255, 0.3);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-2px);
	color: white;
	text-decoration: none;
}

.hero-navigation {
	position: absolute;
	bottom: 2rem;
	left: 0;
	right: 0;
	z-index: 3;
}

@media (max-width: 768px) {
	.hero-navigation {
		display: none;
	}
}

.hero-dots {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
}

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

.hero-dot.active {
	background: white;
	transform: scale(1.2);
}

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

/* Промо боксове */
.promo-boxes {
	background: white;
	padding: 3rem 0;
	border-bottom: 1px solid var(--border-color, #e9ecef);
}

.promo-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	align-items: center;
}

.promo-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.5rem;
	background: white;
	border-radius: var(--border-radius, 12px);
	box-shadow: var(--shadow-light, 0 2px 8px rgba(0,0,0,0.1));
	transition: var(--transition, all 0.3s ease);
	border: 1px solid var(--border-color, #e9ecef);
}

.promo-item:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-medium, 0 4px 15px rgba(0,0,0,0.15));
}

.promo-icon {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--bg-light, #f8f9fa);
	border-radius: 50%;
}

.promo-icon img {
	max-width: 40px;
	max-height: 40px;
	object-fit: contain;
}

.promo-content h3 {
	margin: 0 0 0.5rem 0;
	font-size: 16px;
	font-weight: 700;
	color: var(--text-color, #333);
}

.promo-content p {
	margin: 0;
	font-size: 14px;
	color: var(--text-light, #666);
	line-height: 1.4;
}

/* Топ банери */
.top-banners {
	background: white;
	padding: 2rem 0;
}

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

.banner-item {
	display: block;
	border-radius: var(--border-radius, 12px);
	overflow: hidden;
	box-shadow: var(--shadow-light, 0 2px 8px rgba(0,0,0,0.1));
	transition: var(--transition, all 0.3s ease);
}

.banner-item:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-medium, 0 4px 15px rgba(0,0,0,0.15));
}

.banner-item img {
	width: 100%;
	height: auto;
	display: block;
}

/* Trust секция */
.trust-section {
	padding: 4rem 0;
	background: #f8f9fa;
}

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

.trust-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.5rem;
	background: white;
	border-radius: 15px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.trust-icon {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.trust-icon img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.trust-content h3 {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #333;
}

.trust-content p {
	color: #666;
	font-size: 0.95rem;
	line-height: 1.4;
	margin: 0;
}

/* Категории showcase */
.categories-showcase {
	padding: 5rem 0;
	background: white;
}

.section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.section-header h2 {
	font-size: 2.5rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

.section-header h2 i {
	color: #ff6b6b;
}

.section-header p {
	font-size: 1.1rem;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}

.categories-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	margin-bottom: 3rem;
}

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

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

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

.category-image {
	height: 200px;
	overflow: hidden;
	position: relative;
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

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

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

.category-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	color: #ccc;
}

.category-info {
	padding: 1.5rem;
}

.category-name {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #333;
}

.category-description {
	color: #666;
	font-size: 0.95rem;
	line-height: 1.4;
	margin-bottom: 1rem;
}

.category-arrow {
	color: #ff6b6b;
	font-size: 1.2rem;
	transition: transform 0.3s ease;
}

.category-card:hover .category-arrow {
	transform: translateX(5px);
}

.categories-actions {
	text-align: center;
}

.btn-view-all-categories {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	background: #ff6b6b;
	color: white;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-view-all-categories:hover {
	background: #ff5252;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
	color: white;
	text-decoration: none;
}

/* Продукти секции */
.featured-products,
.promo-products,
.new-products {
	padding: 3rem 0;
}

.featured-products {
	background: transparent;
}

.promo-products {
	background: #f8f9fa;
	color: black;
}

.promo-products .section-header h2,
.promo-products .section-header p {
	color: black;
}

.new-products {
	background: white;
}

/* Продуктови карточки - същите стилове като в продуктовата страница */
.products-slider {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	align-items: stretch;
}

.products-slider .product-card {
	background: var(--bg-white, #fff);
	border-radius: var(--border-radius, 15px);
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	box-sizing: border-box;
}

.products-slider .product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* Изображение на продукта */
.products-slider .product-image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1;
	background: var(--bg-light, #f8f9fa);
}

.products-slider .image-link {
	display: block;
	width: 100%;
	height: 100%;
}

.products-slider .main-image,
.products-slider .hover-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.3s ease;
}

.products-slider .hover-image {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

/* Hover ефект само ако има втора снимка */
.products-slider .product-card:hover .hover-image {
	opacity: 1;
}

.products-slider .product-card:hover .main-image {
	opacity: 0;
}

/* Ако няма втора снимка, не правим hover ефект */
.products-slider .product-card:not(.has-hover-image):hover .main-image {
	opacity: 1;
}

/* Действия за продукта в мрежа - позиционирани в снимката */
.products-slider .product-actions.grid-only {
	position: absolute;
	bottom: 1rem;
	left: 1rem;
	right: 1rem;
	z-index: 5;
}

.products-slider .grid-actions {
	display: flex;
	flex-direction: row;
	gap: 0.5rem;
	opacity: 0;
	transform: translateY(10px);
	transition: all 0.3s ease;
	justify-content: center;
}

.products-slider .product-card:hover .grid-actions {
	opacity: 1;
	transform: translateY(0);
}

.products-slider .action-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: none;
	background: rgba(255,255,255,0.95);
	color: var(--text-color, #333);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.products-slider .action-btn:hover {
	background: var(--primary-color, #fcb900);
	color: black;
	transform: scale(1.1);
}

.products-slider .action-btn.active {
	background: var(--primary-color, #fcb900);
	color: black;
}

.products-slider .add-to-cart {
	background: var(--primary-color, #fcb900);
	color: black;
}

.products-slider .add-to-cart:hover {
	background: var(--primary-hover, #e6a600);
	transform: scale(1.1);
}

/* Информация за продукта */
.products-slider .product-info {
	padding: 0.75rem;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.products-slider .product-title {
	margin: 0 0 1rem;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	flex-grow: 1;
}

.products-slider .product-title a {
	color: var(--text-color, #333);
	text-decoration: none;
	transition: all 0.3s ease;
}

.products-slider .product-title a:hover {
	color: var(--primary-color, #fcb900);
	text-decoration: none;
}

.products-slider .product-price {
	display: flex;
	flex-direction: column;
	margin-top: auto;
}

.products-slider .price-main {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.products-slider .old-price {
	color: var(--text-muted, #999);
	text-decoration: line-through;
	font-size: 14px;
	order: -1; /* Показваме я първа (отгоре) */
}

.products-slider .current-price, 
.products-slider .price-secondary {
	color: #dc3545;
	font-size: 18px;
	font-weight: 700;
}

/* Мобилен бутон за количка в grid view */
.products-slider .mobile-cart-button {
	display: none; /* Скрит по подразбиране */
	margin-top: 1rem;
}

.products-slider .mobile-add-to-cart {
	width: 100%;
	padding: 0.75rem 1rem;
	background: var(--primary-color, #fcb900);
	color: black;
	border: none;
	border-radius: var(--border-radius-small, 8px);
	font-size: 14px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	transition: all 0.3s ease;
	cursor: pointer;
	min-height: 36px;
}

.products-slider .mobile-add-to-cart:hover:not(:disabled) {
	background: var(--primary-hover, #e6a600);
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.products-slider .mobile-add-to-cart:disabled {
	background: var(--text-light, #6c757d);
	color: var(--text-muted, #999);
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

/* Показваме мобилния бутон само на мобилни устройства в grid view */
@media (max-width: 768px) {
	/* Промо боксове */
	.promo-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}
	
	.promo-item {
		flex-direction: column;
		text-align: center;
		padding: 1rem;
	}
	
	.promo-icon {
		width: 50px;
		height: 50px;
	}
	
	.promo-icon img {
		max-width: 30px;
		max-height: 30px;
	}
	
	.promo-content h3 {
		font-size: 14px;
	}
	
	.promo-content p {
		font-size: 12px;
	}
	
	/* Топ банери */
	.banners-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	
	/* Продуктови слайдери */
	.products-slider .mobile-cart-button {
		display: block;
	}
	
	/* Скриваме hover бутоните (за сравнение и любими) в grid view на мобилни */
	.products-slider .product-actions.grid-only .grid-actions .compare-btn,
	.products-slider .product-actions.grid-only .grid-actions .wishlist-btn {
		display: none !important;
	}
}

@media (max-width: 480px) {
	/* Промо боксове */
	.promo-grid {
		grid-template-columns: 1fr;
		gap: 0.75rem;
	}
	
	.promo-item {
		padding: 0.75rem;
	}
}

.tabs-navigation {
	padding-bottom: 1rem;
	padding-top: 1rem;
	border-bottom: 1px solid #ccc;
	margin-bottom: 2rem;
}

.tabs-container {
	display: flex;
	gap: 0.5rem;
	overflow-x: auto;
	padding-bottom: 0.5rem;
	padding-top: 0.5rem;
	justify-content: center;
}

.tab-btn {
	background: white;
	border: 2px solid #ccc;
	border-radius: 15px;
	cursor: pointer;
	transition: all 0.3s ease;
	min-width: 140px;
	padding: 0;
	position: relative;
	overflow: hidden;
}

.tab-btn:hover {
	transform: translateY(-2px);
	border-color: #ff6b6b;
}

.tab-btn.active {
	background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
	border-color: #ff6b6b;
	color: white;
	transform: translateY(-2px);
}

.tab-content {
	padding: 1rem 1.2rem;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0.5rem;
	text-align: center;
}

.tab-icon-wrapper {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 107, 107, 0.1);
	border-radius: 50%;
	transition: all 0.3s ease;
}

.tab-btn.active .tab-icon-wrapper {
	background: rgba(255, 255, 255, 0.2);
}

.tab-icon-wrapper i,
.tab-icon-wrapper img {
	font-size: 16px;
	color: #ff6b6b;
	transition: all 0.3s ease;
}

.tab-btn.active .tab-icon-wrapper i,
.tab-btn.active .tab-icon-wrapper img {
	color: white;
}

.tab-icon-wrapper img {
	width: 20px;
	height: 20px;
	object-fit: contain;
}

.tab-text {
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	color: #666;
	transition: all 0.3s ease;
}

.tab-btn.active .tab-text {
	color: white;
}

.tabs-content {
	position: relative;
}

.tab-panel {
	display: none;
}

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

.products-slider.single-product {
	grid-template-columns: 1fr;
	max-width: 400px;
	margin: 0 auto;
}

.products-slider.two-products {
	grid-template-columns: repeat(2, 1fr);
	max-width: 800px;
	margin: 0 auto;
}

.products-slider.three-products {
	grid-template-columns: repeat(3, 1fr);
	max-width: 1200px;
	margin: 0 auto;
}

.products-slider.four-products {
	grid-template-columns: repeat(4, 1fr);
	max-width: 1400px;
	margin: 0 auto;
}

.product-badges {
	position: absolute;
	top: 1rem;
	left: 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	z-index: 2;
}

.badge {
	padding: 0.35rem 0.8rem;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.badge.discount {
	background: var(--error-color, #dc3545);
	color: white;
}

.badge.new {
	background: var(--success-color, #28a745);
	color: white;
}

.badge.out-of-stock {
	background: #6c757d;
	color: white;
}

/* Новини секция */
.news-section {
	padding: 5rem 0;
	background: #f8f9fa;
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

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

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

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

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

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

.news-content {
	padding: 1.5rem;
}

.news-title {
	margin-bottom: 1rem;
	margin-top: 0;
}

.news-title a {
	color: #333;
	text-decoration: none;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
	transition: color 0.3s ease;
}

.news-title a:hover {
	color: #ff6b6b;
	text-decoration: none;
}

.news-excerpt {
	color: black;
	line-height: 1.5;
	margin-bottom: 1rem;
}

.news-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.news-date {
	color: #999;
	font-size: 12px;
	display: flex;
	align-items: center;
	gap: 0.3rem;
}

.news-read-more {
	color: #ff6b6b;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.news-read-more:hover {
	color: #ff5252;
	text-decoration: none;
}

.news-actions {
	text-align: center;
}

.btn-view-all-news {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	background: #ff6b6b;
	color: white;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-view-all-news:hover {
	background: #ff5252;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
	color: white;
	text-decoration: none;
}

/* SEO съдържание */
.seo-content {
	padding: 4rem 0;
	background: white;
}

.seo-content h1 {
	font-size: 2.5rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 2rem;
	text-align: center;
}

.content-text h3 {
	font-size: 1.5rem;
	font-weight: 600;
	color: #333;
	margin: 2rem 0 1rem 0;
}

.content-text h4 {
	font-size: 1.2rem;
	font-weight: 600;
	margin: 1.5rem 0 0.8rem 0;
	color: black;
}

.content-text p {
	line-height: 1.6;
	margin-bottom: 1rem;
	color: black;
}

.show-more-btn {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 2rem auto 0;
	padding: 1rem 2rem;
	background: #ff6b6b;
	color: white;
	border: none;
	border-radius: 50px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.show-more-btn:hover {
	background: #ff5252;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

/* Анимации */
@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive дизайн */
@media (max-width: 1024px) and (min-width: 769px) {
	/* Таблет - 3 колони за категории и продукти */
	.categories-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.5rem;
	}
	
	.products-slider {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.5rem;
	}
	
	.products-slider.two-products,
	.products-slider.three-products,
	.products-slider.four-products {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.hero-title {
		font-size: 2.5rem;
	}
	
	.hero-subtitle {
		font-size: 1.1rem;
	}
	
	.hero-actions {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.btn-hero-primary,
	.btn-hero-secondary {
		width: 100%;
		justify-content: center;
	}
	
	.trust-grid {
		grid-template-columns: 1fr;
	}
	
	.trust-item {
		flex-direction: column;
		text-align: center;
	}
	
	/* Мобайл - 2 колони за категории и продукти */
	.categories-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}
	
	.products-slider {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}
	
	.products-slider.two-products,
	.products-slider.three-products,
	.products-slider.four-products {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.tabs-container {
		flex-direction: column;
		gap: 0.75rem;
	}
	
	.tab-btn {
		min-width: auto;
		width: 100%;
	}
	
	.tab-content {
		flex-direction: row;
		justify-content: flex-start;
		text-align: left;
		padding: 0.75rem 1rem;
	}
	
	.tab-icon-wrapper {
		width: 28px;
		height: 28px;
		flex-shrink: 0;
	}
	
	.tab-text {
		font-size: 14px;
	}
	
	.news-grid {
		grid-template-columns: 1fr;
	}
	
	.section-header h2 {
		font-size: 2rem;
		flex-direction: column;
		gap: 0.5rem;
	}
	
	.content-card h1 {
		font-size: 2rem;
	}
	.products-slider .product-title {
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 2rem;
	}
	
	.hero-subtitle {
		font-size: 1rem;
	}
	
	.trust-item {
		padding: 1rem;
	}
	
	.category-info,
	.news-content,
	.product-info {
		padding: 1rem;
	}
	
	.content-card {
		padding: 1rem;
	}
	
	/* Малки мобилни устройства - 1 колона за категории и продукти */
	.categories-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	
	.products-slider.two-products,
	.products-slider.three-products,
	.products-slider.four-products {
		grid-template-columns: 1fr;
	}
}
