/**
 * Review Photos — AlphaPatterns
 * Tokens: violeta #7864fd, Inter, 12px radius, botón pill
 */

.ap-review-photos {
	display: flex;
	gap: 8px;
	margin-top: 10px;
	flex-wrap: wrap;
}

.ap-review-photos a {
	display: block;
	border-radius: 12px;
	overflow: hidden;
	line-height: 0;
	transition: transform .15s ease, box-shadow .15s ease;
}

.ap-review-photos a:hover {
	transform: scale(1.03);
	box-shadow: 0 4px 14px rgba(120, 100, 253, .25);
}

.ap-review-photos img {
	width: 90px;
	height: 90px;
	object-fit: cover;
	display: block;
}

.ap-review-photos-field label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
}

.ap-review-photos-field input[type="file"] {
	font-family: Inter, sans-serif;
	font-size: 14px;
}

.ap-review-photos-field input[type="file"]::file-selector-button {
	background: #7864fd;
	color: #fff;
	border: none;
	border-radius: 999px;
	padding: 8px 18px;
	font-family: Inter, sans-serif;
	font-weight: 600;
	font-size: 13px;
	cursor: pointer;
	margin-right: 10px;
	transition: background .15s ease;
}

.ap-review-photos-field input[type="file"]::file-selector-button:hover {
	background: #6551e8;
}

.ap-review-photos-hint {
	display: block;
	font-size: 12px;
	color: #888;
	margin-top: 4px;
}

@media (max-width: 600px) {
	.ap-review-photos img {
		width: 72px;
		height: 72px;
	}
}
