<?php
/**
 * Sleeve feature + color swatches.
 *
 * @package Foliora
 */

$swatches = foliora_sleeve_swatches();
?>
<section class="sleeve-feature" id="sleeves" aria-labelledby="sleeve-title">
	<div class="sleeve-feature__copy" data-reveal>
		<h2 id="sleeve-title">Your book goes everywhere with you. Protect it accordingly.</h2>
		<p class="lead">Softly padded and made for everyday reading — from café tables to crowded bags and weekend trips.</p>
		<div class="sleeve-swatches" data-sleeve-swatches>
			<?php $i = 0; foreach ( $swatches as $color => $file ) : ?>
				<button
					class="swatch swatch--<?php echo esc_attr( sanitize_title( $color ) ); ?><?php echo 0 === $i ? ' is-active' : ''; ?>"
					type="button"
					data-src="<?php echo esc_url( foliora_image_uri( $file ) ); ?>"
					aria-pressed="<?php echo 0 === $i ? 'true' : 'false'; ?>"
				>
					<span class="visually-hidden"><?php echo esc_html( $color ); ?></span>
				</button>
				<?php $i++; ?>
			<?php endforeach; ?>
		</div>
		<a class="button" href="<?php echo esc_url( foliora_product_url( 'FOL-SLV-VIN', foliora_cat_url( 'book-protection' ) ) ); ?>">Shop Book Sleeves</a>
	</div>
	<figure class="sleeve-feature__media" data-reveal>
		<img
			data-sleeve-main
			src="<?php echo esc_url( foliora_image_uri( 'sleeve-feature.jpg' ) ); ?>"
			alt="A vintage book sleeve on a café table"
			width="1600"
			height="900"
		>
	</figure>
</section>
