Preview
Accent
Section code
<section class="sl-lookbook-hotspots" style="padding:clamp(32px,6vw,64px) 1rem;color:inherit;font-family:inherit;">
<div style="max-width:1400px;margin:0 auto;">
<header style="text-align:center;margin:0 0 1.5rem;">
{%- if section.settings.eyebrow != blank -%}
<span style="font-size:.75rem;letter-spacing:.18em;text-transform:uppercase;color:var(--sl-accent,#0a5cff);font-weight:700;">{{ section.settings.eyebrow }}</span>
{%- endif -%}
<h2 style="margin:.4rem 0 .35rem;font-size:clamp(1.5rem,3vw,2rem);font-family:inherit;">{{ section.settings.heading | default: 'Shop the look' }}</h2>
{%- if section.settings.subheading != blank -%}
<p style="margin:0;opacity:.8;line-height:1.55;">{{ section.settings.subheading }}</p>
{%- endif -%}
</header>
<style>
@keyframes sl-hs-pulse { 0% { box-shadow: 0 0 0 0 var(--sl-accent,#0a5cff); } 70% { box-shadow: 0 0 0 14px rgba(10,92,255,0); } 100% { box-shadow: 0 0 0 0 rgba(10,92,255,0); } }
.sl-hs-dot { animation: sl-hs-pulse 1.8s ease-out infinite; }
</style>
<figure style="margin:0;position:relative;border-radius:1rem;overflow:hidden;aspect-ratio:16/10;background:rgba(127,127,127,.08);">
<img src="{{ section.settings.background_image | image_url: width: 1800 | default: 'https://picsum.photos/seed/lookbook-hs/1800/1125' }}" alt="{{ section.settings.image_alt | default: section.settings.heading }}" loading="lazy" style="position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block;" />
{%- for block in section.blocks -%}
<details style="position:absolute;left:{{ block.settings.x | default: 50 }}%;top:{{ block.settings.y | default: 50 }}%;transform:translate(-50%,-50%);z-index:2;">
<summary class="sl-hs-dot" aria-label="Shop {{ block.settings.product_title | default: 'product' }}" style="list-style:none;cursor:pointer;width:24px;height:24px;border-radius:50%;background:var(--sl-accent,#0a5cff);border:3px solid #fff;display:block;"></summary>
<div role="dialog" style="position:absolute;top:calc(100% + .65rem);left:50%;transform:translateX(-50%);min-width:220px;max-width:260px;padding:.85rem;background:#fff;color:#111;border-radius:.5rem;box-shadow:0 10px 28px rgba(0,0,0,.18);display:flex;gap:.65rem;align-items:center;">
<img src="{{ block.settings.product_image | image_url: width: 160 | default: 'https://picsum.photos/seed/hs-' | append: block.id | append: '/160/160' }}" alt="{{ block.settings.product_title | default: 'Product' }}" loading="lazy" style="width:3rem;height:3rem;border-radius:.375rem;object-fit:cover;flex:0 0 auto;" />
<div style="display:flex;flex-direction:column;gap:.15rem;min-width:0;">
<strong style="font-size:.88rem;line-height:1.3;">{{ block.settings.product_title | default: 'Product' }}</strong>
<span style="font-size:.82rem;color:var(--sl-accent,#0a5cff);font-weight:700;">{{ block.settings.price | default: '$49.00' }}</span>
<a href="{{ block.settings.product_link | default: '#' }}" style="font-size:.75rem;color:var(--sl-accent,#0a5cff);text-decoration:none;font-weight:700;border-bottom:1px solid var(--sl-accent,#0a5cff);align-self:flex-start;padding-bottom:1px;">Shop now →</a>
</div>
</div>
</details>
{%- endfor -%}
</figure>
</div>
</section>
{% schema %}
{
"name": "Lookbook With Hotspots",
"settings": [
{ "type": "text", "id": "eyebrow", "label": "Eyebrow", "default": "The lookbook" },
{ "type": "text", "id": "heading", "label": "Heading", "default": "Shop the look" },
{ "type": "textarea", "id": "subheading", "label": "Subheading", "default": "Tap any dot to shop the piece." },
{ "type": "image_picker", "id": "background_image", "label": "Lifestyle image" },
{ "type": "text", "id": "image_alt", "label": "Image alt text", "default": "Lookbook lifestyle image" }
],
"blocks": [
{
"type": "hotspot",
"name": "Hotspot",
"settings": [
{ "type": "range", "id": "x", "label": "X position (%)", "min": 0, "max": 100, "step": 1, "default": 50 },
{ "type": "range", "id": "y", "label": "Y position (%)", "min": 0, "max": 100, "step": 1, "default": 50 },
{ "type": "image_picker", "id": "product_image", "label": "Product image" },
{ "type": "text", "id": "product_title", "label": "Product title", "default": "Featured product" },
{ "type": "text", "id": "price", "label": "Price", "default": "$49.00" },
{ "type": "url", "id": "product_link", "label": "Product link" }
]
}
],
"presets": [
{
"name": "Lookbook With Hotspots",
"blocks": [
{ "type": "hotspot", "settings": { "x": 28, "y": 32, "product_title": "Linen overshirt", "price": "$89.00" } },
{ "type": "hotspot", "settings": { "x": 50, "y": 62, "product_title": "Wide-leg trouser", "price": "$95.00" } },
{ "type": "hotspot", "settings": { "x": 72, "y": 48, "product_title": "Leather tote", "price": "$125.00" } }
]
}
]
}
{% endschema %}Internal notesTeam only
Freeform markdown notes visible only to signed-in team members. Separate from the public description.