About

{% style %} #shopify-section-{{ section.id }} { background: {{ section.settings.bg_color }}; color: {{ section.settings.text_color }}; } .chic-about-{{ section.id }} { max-width: 1200px; margin: 0 auto; padding: 80px 20px; display: flex; align-items: center; justify-content: space-between; gap: 60px; } .chic-about-text-{{ section.id }} { flex: 1; animation: fadeUp-{{ section.id }} 1s ease both; } .chic-about-eyebrow-{{ section.id }} { letter-spacing: 2px; text-transform: uppercase; font-size: 12px; opacity: 0.7; margin-bottom: 12px; } .chic-about-title-{{ section.id }} { font-size: 42px; line-height: 1.1; margin: 0 0 20px 0; } .chic-about-desc-{{ section.id }} { font-size: 16px; line-height: 1.8; opacity: 0.85; margin-bottom: 30px; } .chic-about-btn-{{ section.id }} { display: inline-block; font-size: 14px; letter-spacing: 1px; text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 4px; transition: opacity 0.3s ease; } .chic-about-btn-{{ section.id }}:hover { opacity: 0.6; } .chic-about-image-{{ section.id }} { flex: 1; position: relative; overflow: hidden; aspect-ratio: 4/5; animation: fadeUp-{{ section.id }} 1.2s ease both; } .chic-about-image-{{ section.id }} img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); } @keyframes fadeUp-{{ section.id }} { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } @media (max-width: 768px) { .chic-about-{{ section.id }} { flex-direction: column; padding: 60px 16px; gap: 30px; } .chic-about-title-{{ section.id }} { font-size: 30px; } } @media (prefers-reduced-motion: reduce) { .chic-about-text-{{ section.id }}, .chic-about-image-{{ section.id }} { animation: none; } } {% endstyle %}
{{ section.settings.eyebrow }}

{{ section.settings.title }}

{{ section.settings.description }}
{% if section.settings.button_label != blank %} {{ section.settings.button_label }} {% endif %}
{% if section.settings.image != blank %} {{ section.settings.image | image_url: width: 1200 | image_tag: alt: section.settings.title }} {% else %} {{ 'image' | placeholder_svg_tag }} {% endif %}
{% schema %} { "name": "About Split", "settings": [ { "type": "text", "id": "eyebrow", "label": "Eyebrow", "default": "Our Story" }, { "type": "text", "id": "title", "label": "Title", "default": "Timeless design, refined details" }, { "type": "textarea", "id": "description", "label": "Description", "default": "We create elevated fashion accessories designed to accompany you through every moment. Minimal, intentional, and made to last beyond seasons." }, { "type": "text", "id": "button_label", "label": "Button Label", "default": "Discover More" }, { "type": "url", "id": "button_link", "label": "Button Link" }, { "type": "image_picker", "id": "image", "label": "Image" }, { "type": "color", "id": "bg_color", "label": "Background", "default": "#F6F3EF" }, { "type": "color", "id": "text_color", "label": "Text Color", "default": "#1C1C1C" } ], "presets": [ { "name": "About Split" } ] } {% endschema %}