/**
 * Collections – archive and single templates
 */
.svaisa-collections-wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 24px 20px;
}

.svaisa-collections-header,
.svaisa-collection-single-header {
	margin-bottom: 32px;
}

.svaisa-collections-title,
.svaisa-collection-single-title {
	margin: 0 0 8px;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.2;
}

.svaisa-collections-desc,
.svaisa-collection-single-excerpt {
	margin: 0;
	font-size: 16px;
	color: #64748b;
	line-height: 1.5;
}

.svaisa-collections-grid {
	display: grid;
	grid-template-columns: repeat( auto-fill, minmax( 260px, 1fr ) );
	gap: 24px;
}

.svaisa-collection-card {
	display: block;
	text-decoration: none;
	color: inherit;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba( 0, 0, 0, .08 );
	border: 1px solid #e2e8f0;
	transition: box-shadow .2s, transform .2s;
}

.svaisa-collection-card:hover {
	box-shadow: 0 8px 24px rgba( 0, 0, 0, .12 );
	transform: translateY( -2px );
}

.svaisa-collection-card-thumb {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #f1f5f9;
}

.svaisa-collection-card-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.svaisa-collection-card-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient( 135deg, #e2e8f0 0%, #cbd5e1 100% );
}

.svaisa-collection-card-content {
	padding: 16px;
}

.svaisa-collection-card-title {
	margin: 0 0 4px;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.3;
}

.svaisa-collection-card-count {
	font-size: 13px;
	color: #64748b;
}

.svaisa-collections-empty,
.svaisa-collection-empty {
	margin: 0;
	padding: 40px 20px;
	text-align: center;
	color: #64748b;
	font-size: 16px;
}

/* Single collection – product grid */
.svaisa-collection-products-grid {
	display: grid;
	grid-template-columns: repeat( auto-fill, minmax( 180px, 1fr ) );
	gap: 20px;
}

.svaisa-collection-product-item {
	position: relative;
}

.svaisa-collection-product-link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.svaisa-collection-product-thumb {
	aspect-ratio: 1;
	border-radius: 8px;
	overflow: hidden;
	background: #f1f5f9;
	margin-bottom: 10px;
}

.svaisa-collection-product-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.svaisa-collection-product-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient( 135deg, #e2e8f0 0%, #cbd5e1 100% );
}

.svaisa-collection-product-title {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	display: block;
}

.svaisa-collection-product-link:hover .svaisa-collection-product-title {
	text-decoration: underline;
}

@media ( max-width: 640px ) {
	.svaisa-collections-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.svaisa-collection-products-grid {
		grid-template-columns: repeat( 2, 1fr );
		gap: 16px;
	}
}
