
/* Front Page Custom Styles */

/* Featured Stores Section */
.featured-stores-section {
	padding: 20px 0;
	background: #fff;
	margin-top: 40px;
	float: left;
	width: 100%;
}

.featured-stores-section .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	text-align: center;
}

/* Section Header */
.section-header-container {
	text-align: center;
	margin: 0 auto 30px auto;
}

.section-heading {
	text-align: center;
	font-size: 1.6rem;
	font-weight: 700;
	color: #000;
	margin: 0 0 20px 0;
	padding: 0;
	text-transform: uppercase;
	letter-spacing: 2px;
}

/* Divider Line */
.section-divider {
	width: 25%;
	height: 2px;
	margin: 0 auto;
}

/* Stores Grid - Masonry Layout */
.stores-grid {
	column-count: 4;
	column-gap: 30px;
	column-fill: balance;
}

.stores-grid .store-item {
	break-inside: avoid;
	margin-bottom: 10px;
	display: block;
	width: 100%;
}

/* Store Items */
.store-item {
	border-radius: 12px;
	transition: all .3s ease;
	display: block;
	width: 100%;
}

.store-image {
	position: relative;
	overflow: visible;
	min-height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.store-image img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	transition: transform .3s ease;
}

.store-content {
	padding: 20px;
	text-align: center;
}

.store-title {
	font-size: 1.1rem;
	font-weight: 600;
	color: #333;
	margin: 0 0 10px 0;
	line-height: 1.3;
	min-height: 2.6em;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.store-excerpt {
	font-size: .9rem;
	color: #666;
	margin: 0;
	line-height: 1.4;
	min-height: 2.8em;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Hover Effects */
.store-item:hover .store-image img {
	transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1200px) {
	.stores-grid {
		column-count: 4;
		column-gap: 25px;
	}
}

@media (max-width: 768px) {
	.stores-grid {
		column-count: 2;
		column-gap: 20px;
	}
	
	.section-heading {
		font-size: 2rem;
		margin-bottom: 15px;
	}
}

@media (max-width: 480px) {
	.stores-grid {
		column-count: 2;
		column-gap: 15px;
	}
	
	.store-image {
		min-height: 120px;
	}
}

/* No Stores Fallback */
.no-stores {
	grid-column: 1/-1;
	text-align: center;
	padding: 40px;
	color: #666;
	font-style: italic;
}

/* Responsive adjustments for existing sections */
.home_products_wrap, .home_feature_blog {
	margin-bottom: 60px;
}
