/* Bloc d'affiliation Amazon */
.wc-amz-box {
	margin: 30px 0;
	padding: 20px;
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.wc-amz-box-inner {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.wc-amz-box-image {
	text-align: center;
	margin-bottom: 15px;
	position: relative;
}

.wc-amz-box-image img {
	max-width: 100%;
	height: auto;
	border-radius: 4px;
}

.wc-amz-box-rating {
	margin-bottom: 10px;
	display: flex;
	justify-content: flex-start;
	gap: 4px;
	align-items: center;
}

.wc-amz-box-star {
	font-size: 20px;
	color: #ffc107;
	line-height: 1;
}

.wc-amz-box-star-empty {
	color: #ddd;
}

.wc-amz-box-rating-text {
	font-size: 0.85em;
	color: #444;
	margin-left: 6px;
	padding: 3px 8px;
	background: #fff7e6;
	border-radius: 999px;
	font-weight: 500;
}

.wc-amz-box-content {
	flex: 1;
}

.wc-amz-box-title {
	font-size: 1.25em;
	font-weight: bold;
	margin: 0 0 15px 0;
	color: #333;
	line-height: 1.4;
}

.wc-amz-box-features {
	background: #f5f5f5;
	padding: 15px;
	border-radius: 4px;
	margin-bottom: 20px;
}

.wc-amz-box-features-label {
	font-weight: bold;
	color: #333;
	margin-bottom: 10px;
	display: block;
	font-size: 0.9em;
}

.wc-amz-box-features-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.wc-amz-box-features-list li {
	padding: 8px 0;
	display: flex;
	align-items: flex-start;
	gap: 8px;
	color: #555;
	line-height: 1.5;
}

.wc-amz-box-feature-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #4caf50;
	color: #fff;
	font-weight: bold;
	flex-shrink: 0;
	font-size: 14px;
}

.wc-amz-box-offers {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.wc-amz-box-offer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px;
	background: #fafafa;
	border-radius: 4px;
	flex-wrap: wrap;
	gap: 15px;
	margin-top: 10px;
}

.wc-amz-box-offer-merchant {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 500;
	color: #333;
}

.wc-amz-box-amazon-logo {
	font-weight: bold;
	color: #232f3e;
}

.wc-amz-box-offer-price {
	font-weight: bold;
	font-size: 1.1em;
	color: #333;
}

.wc-amz-box-offer-button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: #7b2cbf;
	color: #fff !important;
	text-decoration: none;
	border-radius: 4px;
	font-weight: 500;
	transition: background 0.3s ease;
}

.wc-amz-box-offer-button:hover {
	background: #6a1b9a;
	color: #fff !important;
	text-decoration: none;
}

.wc-amz-box-offer-arrow {
	font-size: 1.2em;
}

/* Message d'erreur (visible uniquement pour les admins) */
.wc-amz-box-error {
	background: #fff3cd;
	border-color: #ffc107;
}

.wc-amz-box-error-content {
	padding: 15px;
}

.wc-amz-box-error-content strong {
	color: #856404;
	display: block;
	margin-bottom: 8px;
}

.wc-amz-box-error-content p {
	margin: 0;
	color: #856404;
}

/* Responsive */
@media (min-width: 768px) {
	.wc-amz-box-inner {
		flex-direction: row;
	}

	.wc-amz-box-image {
		flex: 0 0 200px;
		margin-bottom: 0;
	}

	.wc-amz-box-content {
		flex: 1;
	}

	.wc-amz-box-offer {
		flex-wrap: nowrap;
	}
}

/* Mention légale footer */
.wc-amazon-footer-notice {
	padding: 15px 0;
	text-align: center;
	font-size: 0.9em;
	color: #666;
	border-top: 1px solid #e0e0e0;
	margin-bottom: 20px;
}

