.souetal-affiliate-shop {
	margin: 20px 0;
}

.souetal-group-title {
	margin-bottom: 16px;
}

.souetal-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 20px;
	margin-bottom: 40px;
}

.souetal-card {
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 10px;
	padding: 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.souetal-card:hover {
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
	transform: translateY(-2px);
}

.souetal-card-image {
	width: 100%;
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-bottom: 12px;
	border-radius: 8px;
	background: #fafafa;
}

.souetal-card-image img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.souetal-card-name {
	font-size: 15px;
	line-height: 1.4;
	margin: 0 0 14px;
	min-height: 2.8em;
}

.souetal-card-buttons {
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: 100%;
	margin-top: auto;
}

.souetal-btn {
	display: inline-block;
	width: 100%;
	padding: 10px 14px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	border: none;
	box-sizing: border-box;
}

.souetal-btn-buy {
	background: #ff9900;
	color: #111;
}

.souetal-btn-buy:hover {
	background: #e88a00;
	color: #111;
}

.souetal-btn-copy {
	background: #f0f0f1;
	color: #1d2327;
	border: 1px solid #dcdcde;
}

.souetal-btn-copy:hover {
	background: #e2e2e3;
}

.souetal-btn-copy.souetal-copied {
	background: #d4edda;
	border-color: #b6dfc0;
	color: #155724;
}
