:root {
    --se-bg: #ffffff;
    --se-soft: #f6f3ef;
    --se-line: #dedbd6;
    --se-ink: #1f2328;
    --se-muted: #7e817f;
    --se-warm: #b89576;
    --se-warm-dark: #8d6a50;
    --se-max: 1440px;
    --se-header-h: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--se-bg);
    color: var(--se-ink);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
    font-size: 15px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; }

.se-container {
    width: min(var(--se-max), calc(100vw - 48px));
    margin: 0 auto;
}
.se-readable { max-width: 920px; }

/* Header */
.se-site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    height: var(--se-header-h);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--se-line);
    backdrop-filter: blur(16px);
}
.se-header-inner {
    height: 100%;
    width: min(1680px, calc(100vw - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
}
.se-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 520;
    letter-spacing: -0.02em;
}
.se-brand img { max-height: 44px; width: auto; }
.se-brand-mark {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--se-ink);
    color: #fff;
    font-size: 14px;
}
.se-primary-nav { justify-self: end; }
.se-menu, .se-menu ul, .se-footer-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.se-menu a {
    font-size: 13px;
    color: var(--se-ink);
    opacity: .82;
}
.se-menu a:hover { opacity: 1; }
.se-header-cart {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 14px;
    border: 1px solid var(--se-line);
    border-radius: 999px;
    font-size: 13px;
}
.se-header-cart strong {
    min-width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--se-ink);
    color: #fff;
    font-size: 11px;
}

/* Buttons */
.se-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 20px !important;
    border-radius: 999px !important;
    border: 1px solid var(--se-ink) !important;
    background: var(--se-ink) !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    box-shadow: none !important;
    text-transform: none !important;
    transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.se-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
    background: #000 !important;
    border-color: #000 !important;
    color: #fff !important;
    transform: translateY(-1px);
}
.se-button-light {
    background: transparent !important;
    color: var(--se-ink) !important;
}
.se-button-light:hover {
    background: var(--se-ink) !important;
    color: #fff !important;
}

/* Home */
.se-home-hero {
    min-height: calc(100vh - var(--se-header-h));
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
    border-bottom: 1px solid var(--se-line);
}
.se-home-hero-copy {
    padding: clamp(56px, 9vw, 128px) clamp(28px, 7vw, 96px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.se-eyebrow {
    margin: 0 0 14px;
    color: var(--se-muted);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.se-home-hero h1,
.se-catalog-hero h1 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(52px, 8vw, 112px);
    line-height: .92;
    letter-spacing: -0.07em;
    font-weight: 460;
}
.se-home-hero p:not(.se-eyebrow) {
    max-width: 560px;
    margin: 26px 0 0;
    color: var(--se-muted);
    font-size: clamp(17px, 1.7vw, 22px);
    line-height: 1.45;
}
.se-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 36px;
}
.se-home-hero-visual {
    position: relative;
    min-height: 520px;
    background:
        radial-gradient(circle at 25% 20%, rgba(184, 149, 118, .22), transparent 30%),
        linear-gradient(135deg, #f5eee6 0%, #faf8f3 48%, #ece8df 100%);
    border-left: 1px solid var(--se-line);
    overflow: hidden;
}
.se-visual-card {
    position: absolute;
    border: 1px solid rgba(31, 35, 40, .12);
    background: rgba(255,255,255,.58);
    box-shadow: 0 28px 90px rgba(31, 35, 40, .12);
    backdrop-filter: blur(8px);
}
.se-visual-card-large {
    width: 52%;
    aspect-ratio: 1 / 1;
    left: 15%;
    top: 18%;
    border-radius: 32px;
}
.se-visual-card-small {
    width: 34%;
    aspect-ratio: 1.15 / 1;
    right: 12%;
    bottom: 20%;
    border-radius: 28px;
}
.se-home-section { padding: 88px 0; }
.se-section-heading {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}
.se-section-heading h2 {
    max-width: 860px;
    margin: 0;
    font-size: clamp(30px, 4vw, 56px);
    line-height: 1.02;
    letter-spacing: -0.045em;
    font-weight: 460;
}
.se-collection-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--se-line);
    border-left: 1px solid var(--se-line);
}
.se-collection-card {
    min-height: 300px;
    padding: 28px;
    border-right: 1px solid var(--se-line);
    border-bottom: 1px solid var(--se-line);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: background .18s ease;
}
.se-collection-card:hover { background: var(--se-soft); }
.se-collection-card span { color: var(--se-muted); font-size: 13px; }
.se-collection-card h3 {
    margin: auto 0 14px;
    font-size: 24px;
    letter-spacing: -0.03em;
    font-weight: 500;
}
.se-collection-card p { margin: 0; color: var(--se-muted); max-width: 340px; }

/* Catalog */
.se-catalog-page { background: #fff; }
.se-catalog-hero {
    padding: 78px 0 64px;
    border-bottom: 1px solid var(--se-line);
    background: #fff;
}
.se-catalog-hero-inner {
    width: min(1680px, calc(100vw - 48px));
    margin: 0 auto;
}
.se-catalog-hero h1 {
    max-width: 980px;
    font-size: clamp(52px, 8vw, 116px);
}
.se-catalog-intro {
    max-width: 620px;
    margin-top: 24px;
    color: var(--se-muted);
    font-size: 18px;
}
.se-catalog-intro p { margin: 0; }
.se-catalog-toolbar {
    position: sticky;
    top: var(--se-header-h);
    z-index: 20;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    min-height: 64px;
    padding: 12px 24px;
    border-bottom: 1px solid var(--se-line);
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(16px);
}
.se-catalog-pills {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
}
.se-pill {
    white-space: nowrap;
    padding: 9px 15px;
    border: 1px solid var(--se-line);
    border-radius: 999px;
    color: var(--se-muted);
    font-size: 13px;
}
.se-pill:hover,
.se-pill.is-active {
    background: var(--se-ink);
    border-color: var(--se-ink);
    color: #fff;
}
.se-catalog-ordering select {
    min-width: 170px;
    padding: 10px 12px;
    border: 1px solid var(--se-line);
    border-radius: 999px;
    background: #fff;
    color: var(--se-muted);
    font-size: 13px;
}
.se-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--se-line);
    border-left: 1px solid var(--se-line);
}
.se-product-card {
    min-height: 600px;
    padding: 34px 24px 26px;
    border-right: 1px solid var(--se-line);
    border-bottom: 1px solid var(--se-line);
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}
.se-product-image-link {
    height: 390px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
}
.se-product-image {
    width: 100%;
    height: 100% !important;
    object-fit: contain;
    object-position: center;
    transition: transform .24s ease;
}
.se-product-card:hover .se-product-image { transform: scale(1.025); }
.se-product-info { margin-top: auto; }
.se-product-main-line {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: start;
}
.se-product-title {
    margin: 0 0 7px;
    font-size: 16px;
    line-height: 1.32;
    letter-spacing: -0.015em;
    font-weight: 500;
}
.se-product-price {
    margin-top: 1px;
    white-space: nowrap;
    color: var(--se-ink);
    font-size: 14px;
}
.se-product-subtitle {
    color: var(--se-muted);
    font-size: 13px;
    margin-bottom: 12px;
}
.se-product-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--se-muted);
    font-size: 13px;
}
.se-product-status span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #75bf7a;
}
.se-product-status.is-made-to-order span { background: #bbb; }
.se-product-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    padding: 9px 17px;
    border: 1px solid var(--se-line);
    border-radius: 999px;
    color: var(--se-ink);
    font-size: 13px;
    transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.se-product-cta:hover {
    background: var(--se-ink);
    border-color: var(--se-ink);
    color: #fff;
}
.se-catalog-pagination {
    padding: 42px 0;
    text-align: center;
}
.woocommerce nav.woocommerce-pagination ul {
    border: 0 !important;
    display: inline-flex;
    gap: 8px;
}
.woocommerce nav.woocommerce-pagination ul li {
    border: 0 !important;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    min-width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid var(--se-line);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff !important;
    color: var(--se-ink) !important;
}
.woocommerce nav.woocommerce-pagination ul li span.current {
    background: var(--se-ink) !important;
    color: #fff !important;
    border-color: var(--se-ink);
}

/* Single product */
.se-single-product-page { padding: 54px 0 88px; }
.se-single-product {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
    gap: clamp(36px, 6vw, 96px);
    align-items: start;
}
.se-single-gallery {
    position: sticky;
    top: calc(var(--se-header-h) + 32px);
}
.woocommerce-product-gallery {
    width: 100% !important;
}
.woocommerce div.product div.images img {
    background: var(--se-soft);
    border: 1px solid var(--se-line);
}
.se-single-summary {
    padding-top: 22px;
}
.se-single-title {
    margin: 0;
    font-size: clamp(34px, 4.6vw, 68px);
    line-height: 1;
    letter-spacing: -0.06em;
    font-weight: 460;
}
.se-single-price {
    margin-top: 24px;
    font-size: 22px;
    letter-spacing: -0.02em;
}
.se-single-excerpt {
    margin-top: 24px;
    color: var(--se-muted);
    font-size: 17px;
    max-width: 560px;
}
.se-single-actions {
    margin-top: 30px;
    padding: 24px 0;
    border-top: 1px solid var(--se-line);
    border-bottom: 1px solid var(--se-line);
}
.woocommerce div.product form.cart {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 !important;
}
.woocommerce .quantity .qty {
    min-height: 42px;
    width: 82px !important;
    border: 1px solid var(--se-line);
    border-radius: 999px;
    padding: 0 14px;
}
.se-single-notes {
    display: grid;
    gap: 0;
    margin-top: 28px;
    border-top: 1px solid var(--se-line);
}
.se-single-notes > div {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid var(--se-line);
}
.se-single-notes strong { font-weight: 560; }
.se-single-notes span { color: var(--se-muted); }
.se-single-meta {
    margin-top: 24px;
    color: var(--se-muted);
    font-size: 13px;
}
.se-product-detail { margin-top: 72px; }
.woocommerce div.product .woocommerce-tabs ul.tabs {
    padding: 0 !important;
    margin: 0 !important;
    border-bottom: 1px solid var(--se-line);
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before { border: 0 !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li {
    border: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
    margin: 0 24px 0 0 !important;
    padding: 0 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    padding: 0 0 14px !important;
    font-weight: 500 !important;
    color: var(--se-muted) !important;
}
.woocommerce div.product .woocommerce-tabs .panel {
    max-width: 860px;
    padding: 32px 0 0 !important;
    color: var(--se-muted);
}
.woocommerce div.product .woocommerce-tabs .panel h2 {
    color: var(--se-ink);
    letter-spacing: -0.03em;
}

/* Generic pages */
.se-page { padding: 72px 0 96px; }
.se-page-title h1 {
    margin: 0 0 28px;
    font-size: clamp(38px, 6vw, 82px);
    line-height: .98;
    letter-spacing: -0.06em;
    font-weight: 460;
}
.se-content { color: var(--se-muted); font-size: 17px; }
.se-content h2, .se-content h3 { color: var(--se-ink); letter-spacing: -0.03em; }
.se-post-list { display: grid; gap: 18px; }
.se-post-card { padding: 24px; border: 1px solid var(--se-line); }

/* Woo notices/forms */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    border-top-color: var(--se-ink) !important;
    background: var(--se-soft) !important;
    color: var(--se-ink) !important;
}
.woocommerce-message::before,
.woocommerce-info::before { color: var(--se-ink) !important; }

/* Footer */
.se-site-footer {
    border-top: 1px solid var(--se-line);
    background: #fff;
}
.se-footer-inner {
    width: min(1680px, calc(100vw - 48px));
    margin: 0 auto;
    padding: 38px 0;
    display: flex;
    justify-content: space-between;
    gap: 32px;
    align-items: flex-start;
}
.se-footer-brand { font-weight: 560; letter-spacing: -0.02em; }
.se-footer-inner p { margin: 5px 0 0; color: var(--se-muted); }
.se-footer-menu a { color: var(--se-muted); font-size: 13px; }

@media (max-width: 1180px) {
    .se-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .se-product-image-link { height: 330px; }
    .se-product-card { min-height: 540px; }
}
@media (max-width: 900px) {
    :root { --se-header-h: 68px; }
    .se-header-inner {
        width: min(100%, calc(100vw - 28px));
        grid-template-columns: 1fr auto;
    }
    .se-primary-nav { display: none; }
    .se-home-hero { grid-template-columns: 1fr; }
    .se-home-hero-visual { min-height: 420px; border-left: 0; border-top: 1px solid var(--se-line); }
    .se-section-heading { grid-template-columns: 1fr; gap: 10px; }
    .se-collection-grid { grid-template-columns: 1fr; }
    .se-catalog-toolbar { position: relative; top: auto; align-items: flex-start; flex-direction: column; }
    .se-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .se-product-image-link { height: 260px; }
    .se-product-card { min-height: 450px; padding: 24px 18px 20px; }
    .se-single-product { grid-template-columns: 1fr; }
    .se-single-gallery { position: static; }
    .se-single-notes > div { grid-template-columns: 1fr; gap: 6px; }
    .se-footer-inner { flex-direction: column; }
}
@media (max-width: 560px) {
    .se-container,
    .se-catalog-hero-inner,
    .se-footer-inner { width: calc(100vw - 28px); }
    .se-home-hero-copy { padding: 52px 18px; }
    .se-product-grid { grid-template-columns: 1fr; }
    .se-product-image-link { height: 310px; }
    .se-product-card { min-height: 520px; }
    .se-product-main-line { grid-template-columns: 1fr; gap: 4px; }
    .se-header-cart span { display: none; }
}

/* =========================
   Seirane Minimal v1.1 refinements
   ========================= */

/* Homepage visual now supports real WooCommerce product images. */
.se-visual-card {
    overflow: hidden;
    display: block;
}
.se-visual-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(.96) contrast(.98);
    transition: transform .28s ease;
}
.se-visual-card:hover .se-visual-card-image {
    transform: scale(1.025);
}

/* Product card: keep long names controlled for a cleaner catalog grid. */
.se-product-main-line {
    min-height: 48px;
    align-items: start;
}
.se-product-title {
    max-width: 100%;
}
.se-product-title a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}
.se-product-price {
    padding-top: 1px;
    text-align: right;
}
.se-product-subtitle {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Audience section */
.se-audience-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--se-line);
    border-left: 1px solid var(--se-line);
}
.se-audience-card {
    min-height: 340px;
    padding: 28px;
    border-right: 1px solid var(--se-line);
    border-bottom: 1px solid var(--se-line);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
}
.se-audience-card span {
    color: var(--se-muted);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.se-audience-card h3 {
    margin: auto 0 18px;
    max-width: 420px;
    font-size: clamp(22px, 2.2vw, 32px);
    line-height: 1.08;
    letter-spacing: -0.04em;
    font-weight: 460;
}
.se-audience-card p {
    margin: 0;
    max-width: 390px;
    color: var(--se-muted);
}

/* FAQ section */
.se-faq-list {
    border-top: 1px solid var(--se-line);
}
.se-faq-item {
    border-bottom: 1px solid var(--se-line);
    padding: 0;
}
.se-faq-item summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 0;
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.18;
    letter-spacing: -0.035em;
    font-weight: 460;
}
.se-faq-item summary::-webkit-details-marker { display: none; }
.se-faq-item summary::after {
    content: '+';
    color: var(--se-muted);
    font-weight: 400;
}
.se-faq-item[open] summary::after { content: '–'; }
.se-faq-item p {
    max-width: 760px;
    margin: -8px 0 26px;
    color: var(--se-muted);
    font-size: 17px;
}

@media (max-width: 900px) {
    .se-audience-grid { grid-template-columns: 1fr; }
    .se-audience-card { min-height: 270px; }
    .se-product-main-line { min-height: auto; }
}

/* =========================
   Seirane Minimal v1.2
   editable image sections + fuller catalog images
   ========================= */
:root {
    --se-cream: #fbf7f1;
    --se-blush: #efe1d6;
    --se-sage: #dfe6dc;
}

/* More image-led hero, less empty visual area. */
.se-home-hero-visual {
    background:
        radial-gradient(circle at 20% 18%, rgba(184, 149, 118, .28), transparent 32%),
        radial-gradient(circle at 82% 72%, rgba(117, 144, 111, .14), transparent 28%),
        linear-gradient(135deg, #f4ece2 0%, #fbf8f2 48%, #eee8de 100%);
}
.se-home-hero-visual::before {
    content: '';
    position: absolute;
    width: 68%;
    aspect-ratio: 1.25 / 1;
    left: 12%;
    top: 14%;
    border: 1px solid rgba(184, 149, 118, .32);
    border-radius: 42% 58% 52% 48% / 52% 42% 58% 48%;
    opacity: .48;
    pointer-events: none;
}
.se-visual-card-large {
    width: 60%;
    left: 13%;
    top: 18%;
}
.se-visual-card-small {
    width: 38%;
    right: 8%;
    bottom: 16%;
}
.se-visual-card-image {
    object-fit: cover;
    transform: scale(1.02);
}
.se-visual-card:hover .se-visual-card-image {
    transform: scale(1.055);
}

/* Shared image-card style for Collections and Who We Work With. */
.se-image-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--se-line);
    border-left: 1px solid var(--se-line);
    background: #fff;
}
.se-image-card {
    min-height: 460px;
    border-right: 1px solid var(--se-line);
    border-bottom: 1px solid var(--se-line);
    display: grid;
    grid-template-rows: 245px 1fr;
    color: var(--se-ink);
    background: #fff;
    overflow: hidden;
    transition: background .18s ease;
}
.se-image-card:hover {
    background: var(--se-cream);
}
.se-image-card-media {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 25% 20%, rgba(184, 149, 118, .16), transparent 34%),
        linear-gradient(135deg, #faf6ef, #efe7dc);
    border-bottom: 1px solid var(--se-line);
}
.se-image-card-media::after {
    content: '';
    position: absolute;
    inset: auto 18px 18px auto;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(184, 149, 118, .18);
}
.se-image-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
    transition: transform .25s ease;
}
.se-image-card:hover .se-image-card-media img {
    transform: scale(1.085);
}
.se-image-card-copy {
    padding: 26px 28px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.se-card-number,
.se-card-kicker {
    margin-bottom: 54px;
    color: var(--se-muted);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.se-image-card h3 {
    margin: 0 0 12px;
    font-size: clamp(24px, 2.35vw, 34px);
    line-height: 1.06;
    letter-spacing: -0.045em;
    font-weight: 460;
}
.se-image-card p {
    max-width: 360px;
    margin: 0;
    color: var(--se-muted);
    font-size: 15px;
}

/* Add a warmer block so the later homepage is not visually empty. */
.se-audience-section {
    width: min(1680px, calc(100vw - 48px));
    padding: 78px 36px 82px;
    border: 1px solid var(--se-line);
    background:
        radial-gradient(circle at 12% 10%, rgba(184, 149, 118, .18), transparent 26%),
        linear-gradient(180deg, #fbf8f3 0%, #ffffff 78%);
}
.se-audience-section .se-section-heading {
    margin-bottom: 36px;
}
.se-audience-card-v2 .se-image-card-media {
    background:
        radial-gradient(circle at 20% 20%, rgba(117, 144, 111, .16), transparent 34%),
        linear-gradient(135deg, #f8f4ed, #e9ede3);
}

/* FAQ gets a softer colored surface. */
.se-faq-section {
    padding-top: 72px;
    padding-bottom: 88px;
}
.se-faq-list {
    background: var(--se-cream);
    border: 1px solid var(--se-line);
    padding: 0 28px;
}
.se-faq-item p {
    font-size: 15px;
}

/* Catalog cards: images fill the whole media block instead of leaving side blank. */
.se-product-card {
    min-height: auto;
    padding: 0;
    justify-content: flex-start;
}
.se-product-image-link {
    width: 100%;
    height: clamp(360px, 28vw, 520px);
    margin: 0;
    overflow: hidden;
    display: block;
    background:
        radial-gradient(circle at 20% 18%, rgba(184, 149, 118, .14), transparent 32%),
        linear-gradient(135deg, #fbf7f1, #eee7dd);
    border-bottom: 1px solid var(--se-line);
}
.se-product-image {
    width: 100%;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    transform: scale(1.06);
    transition: transform .25s ease;
}
.se-product-card:hover .se-product-image {
    transform: scale(1.1);
}
.se-product-info {
    min-height: 174px;
    padding: 24px 24px 26px;
    display: flex;
    flex-direction: column;
}
.se-product-main-line {
    min-height: 46px;
}
.se-product-subtitle {
    margin-top: 4px;
}
.se-product-status {
    margin-top: auto;
}
.se-product-cta {
    width: fit-content;
}

@media (max-width: 1180px) {
    .se-product-image-link { height: 380px; }
    .se-image-card { grid-template-rows: 220px 1fr; }
}
@media (max-width: 900px) {
    .se-image-grid { grid-template-columns: 1fr; }
    .se-image-card { min-height: auto; grid-template-rows: 260px auto; }
    .se-card-number,
    .se-card-kicker { margin-bottom: 34px; }
    .se-audience-section { width: calc(100vw - 28px); padding: 52px 20px; }
    .se-product-image-link { height: 320px; }
    .se-product-info { min-height: 160px; }
    .se-home-hero-visual::before { width: 78%; left: 8%; }
}
@media (max-width: 560px) {
    .se-image-card { grid-template-rows: 220px auto; }
    .se-product-image-link { height: 330px; }
}


/* =========================
   Seirane Minimal v1.3
   brighter Van Gogh-inspired ocean hero backgrounds
   ========================= */
.se-home-hero-visual.se-hero-bg-ocean,
.se-home-hero-visual:not([class*="se-hero-bg-"]) {
    background:
        radial-gradient(circle at 18% 15%, rgba(250, 221, 128, .36), transparent 22%),
        radial-gradient(circle at 76% 26%, rgba(255, 255, 255, .42), transparent 30%),
        radial-gradient(circle at 24% 78%, rgba(49, 147, 178, .34), transparent 34%),
        radial-gradient(circle at 88% 74%, rgba(4, 91, 132, .30), transparent 30%),
        linear-gradient(135deg, #eafaff 0%, #c7edf6 34%, #8fd2e4 66%, #5aaecb 100%) !important;
}

.se-home-hero-visual.se-hero-bg-warm {
    background:
        radial-gradient(circle at 20% 18%, rgba(184, 149, 118, .28), transparent 32%),
        radial-gradient(circle at 82% 72%, rgba(117, 144, 111, .14), transparent 28%),
        linear-gradient(135deg, #f4ece2 0%, #fbf8f2 48%, #eee8de 100%) !important;
}

.se-home-hero-visual.se-hero-bg-sage {
    background:
        radial-gradient(circle at 20% 15%, rgba(232, 218, 171, .32), transparent 28%),
        radial-gradient(circle at 80% 78%, rgba(115, 153, 132, .28), transparent 32%),
        linear-gradient(135deg, #f4f8ef 0%, #dfeadd 48%, #bccfbf 100%) !important;
}

.se-home-hero-visual.se-hero-bg-parchment {
    background:
        radial-gradient(circle at 20% 20%, rgba(206, 171, 118, .24), transparent 28%),
        radial-gradient(circle at 88% 72%, rgba(198, 181, 144, .20), transparent 30%),
        linear-gradient(135deg, #fffaf0 0%, #f2eadb 48%, #e3d6c3 100%) !important;
}

.se-home-hero-visual.se-hero-bg-ocean::before,
.se-home-hero-visual:not([class*="se-hero-bg-"])::before {
    border-color: rgba(55, 147, 180, .32);
    box-shadow: 0 0 120px rgba(91, 184, 209, .22);
}

.se-home-hero-visual.se-hero-bg-ocean .se-visual-card {
    background: rgba(255, 255, 255, .44);
    border-color: rgba(255, 255, 255, .62);
    box-shadow: 0 30px 100px rgba(27, 93, 124, .20);
}

/* =========================
   Seirane Minimal v1.4
   single editable hero image
   ========================= */
.se-home-hero-visual.se-hero-single-visual {
    isolation: isolate;
    background: #d8eef3 !important;
}

.se-home-hero-visual.se-hero-single-visual::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    width: auto !important;
    height: auto !important;
    aspect-ratio: auto !important;
    left: auto !important;
    top: auto !important;
    border: 0 !important;
    border-radius: 0 !important;
    opacity: 1 !important;
    box-shadow: none !important;
    pointer-events: none !important;
    z-index: 2 !important;
    background:
        linear-gradient(90deg, rgba(255,255,255,.16) 0%, rgba(255,255,255,0) 26%),
        radial-gradient(circle at 78% 18%, rgba(255,255,255,.22), transparent 32%),
        radial-gradient(circle at 22% 82%, rgba(43, 145, 176, .16), transparent 34%);
}

.se-home-hero-visual.se-hero-single-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,.06));
}

.se-home-hero-image {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.01);
}

@media (max-width: 900px) {
    .se-home-hero-visual.se-hero-single-visual {
        min-height: 520px;
    }
}

@media (max-width: 560px) {
    .se-home-hero-visual.se-hero-single-visual {
        min-height: 420px;
    }
}

/* =========================
   Seirane Minimal v1.6
   homepage structure refresh
   ========================= */
.se-section-heading-split {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}
.se-text-link {
    color: var(--se-muted);
    font-size: 14px;
    white-space: nowrap;
    border-bottom: 1px solid var(--se-line);
    padding-bottom: 4px;
}

.se-showcase-section {
    padding-top: 72px;
}
.se-showcase-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--se-line);
    border-left: 1px solid var(--se-line);
}
.se-showcase-card {
    border-right: 1px solid var(--se-line);
    border-bottom: 1px solid var(--se-line);
    background: #fff;
}
.se-showcase-card.se-showcase-featured {
    grid-row: span 1;
}
.se-showcase-card .se-product-image-link {
    height: clamp(320px, 29vw, 480px);
}
.se-showcase-card.se-showcase-featured .se-product-image-link {
    height: clamp(420px, 36vw, 620px);
}
.se-showcase-card .se-product-info {
    min-height: 186px;
}

.se-process-section {
    background: linear-gradient(180deg, #f7fbfc 0%, #ffffff 100%);
    border-top: 1px solid var(--se-line);
    border-bottom: 1px solid var(--se-line);
    padding: 82px 32px;
}
.se-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--se-line);
    border-left: 1px solid var(--se-line);
}
.se-process-card {
    min-height: 240px;
    padding: 28px 24px 26px;
    border-right: 1px solid var(--se-line);
    border-bottom: 1px solid var(--se-line);
    background: rgba(255,255,255,.72);
}
.se-process-number {
    display: inline-block;
    margin-bottom: 48px;
    color: var(--se-muted);
    font-size: 13px;
    letter-spacing: .12em;
}
.se-process-card h3 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-weight: 480;
}
.se-process-card p {
    margin: 0;
    color: var(--se-muted);
}

.se-faq-list[data-accordion] {
    padding: 0 26px;
}
.se-faq-item summary {
    position: relative;
    padding-right: 44px;
}
.se-faq-item summary::after {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--se-line);
    border-radius: 999px;
    font-size: 18px;
}
.se-faq-item[open] summary::after {
    content: '–';
}

.se-bottom-cta {
    padding-top: 78px;
    padding-bottom: 90px;
}
.se-bottom-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 36px 32px;
    border: 1px solid var(--se-line);
    background:
        radial-gradient(circle at 86% 20%, rgba(255,255,255,.5), transparent 18%),
        radial-gradient(circle at 18% 78%, rgba(78, 163, 189, .10), transparent 22%),
        linear-gradient(135deg, #f5fafb 0%, #e9f4f7 100%);
}
.se-bottom-cta-inner h2 {
    margin: 0 0 10px;
    font-size: clamp(34px, 3.2vw, 56px);
    line-height: .98;
    letter-spacing: -0.05em;
    font-weight: 470;
}
.se-bottom-cta-inner p:not(.se-eyebrow) {
    max-width: 640px;
    margin: 0;
    color: var(--se-muted);
    font-size: 18px;
}
.se-bottom-cta-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.se-site-footer {
    background: #fbfbfb;
}
.se-footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr auto;
    gap: 24px;
    align-items: start;
}
.se-footer-contact p,
.se-footer-contact a {
    color: var(--se-muted);
    margin: 4px 0 0;
}
.se-footer-contact a:hover {
    color: var(--se-ink);
}

@media (max-width: 1180px) {
    .se-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .se-showcase-card.se-showcase-featured {
        grid-column: span 2;
    }
    .se-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .se-footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .se-section-heading-split,
    .se-bottom-cta-inner,
    .se-footer-inner {
        grid-template-columns: 1fr;
        display: grid;
        align-items: start;
    }
    .se-showcase-grid,
    .se-process-grid {
        grid-template-columns: 1fr;
    }
    .se-showcase-card.se-showcase-featured {
        grid-column: span 1;
    }
    .se-process-section {
        padding: 56px 18px;
    }
    .se-bottom-cta-inner {
        padding: 28px 22px;
    }
}

/* =========================
   Seirane Minimal v1.7
   softer typography, equal showcase, animated accordion, interaction polish
   ========================= */
:root {
    --se-ink: #2d3336;
    --se-heading: #252a2d;
    --se-body: #4f5659;
    --se-muted: #858b8d;
    --se-pale: #a5aaac;
}
body {
    color: var(--se-body);
}
h1, h2, h3, h4, h5, h6,
.se-brand-text,
.se-footer-brand,
.se-product-title,
.se-product-title a,
.se-process-card h3,
.se-bottom-cta-inner h2 {
    color: var(--se-heading) !important;
}
.se-eyebrow,
.se-card-number,
.se-card-kicker,
.se-product-subtitle,
.se-product-status,
.se-process-number,
.se-text-link,
.se-footer-contact p,
.se-footer-contact a,
.se-site-footer p {
    color: var(--se-muted) !important;
}
.se-home-hero p:not(.se-eyebrow),
.se-section-heading h2 + p,
.se-image-card p,
.se-process-card p,
.se-bottom-cta-inner p:not(.se-eyebrow) {
    color: var(--se-body) !important;
}

/* Equal product showcase with overlay text on images */
.se-showcase-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}
.se-showcase-card,
.se-showcase-card.se-showcase-featured {
    position: relative;
    min-height: clamp(430px, 32vw, 560px);
    overflow: hidden;
    background: #dcecef;
}
.se-showcase-card.se-showcase-featured {
    grid-column: auto !important;
    grid-row: auto !important;
}
.se-showcase-card .se-product-image-link,
.se-showcase-card.se-showcase-featured .se-product-image-link {
    position: absolute;
    inset: 0;
    height: 100% !important;
    width: 100%;
    border: 0;
    background: linear-gradient(135deg, #eaf4f6, #cde5eb);
}
.se-showcase-card .se-product-image {
    transform: scale(1.02);
    filter: saturate(.98) contrast(.98);
}
.se-showcase-card:hover .se-product-image {
    transform: scale(1.075);
}
.se-showcase-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(0,0,0,.04) 0%, rgba(0,0,0,.05) 38%, rgba(0,0,0,.56) 100%),
        radial-gradient(circle at 82% 10%, rgba(255,255,255,.20), transparent 24%);
}
.se-showcase-card .se-product-info {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 0 !important;
    padding: 24px 22px 22px;
    color: #fff;
    background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.10));
}
.se-showcase-card .se-product-main-line {
    min-height: 0;
    display: block;
}
.se-showcase-card .se-product-title {
    margin: 0 0 8px;
    max-width: 95%;
}
.se-showcase-card .se-product-title,
.se-showcase-card .se-product-title a,
.se-showcase-card .se-product-price,
.se-showcase-card .se-product-subtitle,
.se-showcase-card .se-product-status {
    color: #fff !important;
    text-shadow: 0 1px 14px rgba(0,0,0,.26);
}
.se-showcase-card .se-product-title a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.se-showcase-card .se-product-price {
    margin: 0 0 8px;
    opacity: .92;
}
.se-showcase-card .se-product-subtitle {
    margin-top: 0;
    opacity: .82;
}
.se-showcase-card .se-product-status-row {
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}
.se-showcase-card .se-button,
.se-showcase-card .se-product-cta {
    color: #263035 !important;
    background: rgba(255,255,255,.84) !important;
    border-color: rgba(255,255,255,.55) !important;
    backdrop-filter: blur(10px);
}
.se-showcase-card .se-button:hover,
.se-showcase-card .se-product-cta:hover {
    background: #fff !important;
    transform: translateY(-2px);
}

/* Match process section width and visual weight to audience section */
.se-process-section {
    width: min(1680px, calc(100vw - 48px));
    padding: 78px 36px 82px;
    border: 1px solid var(--se-line);
    background:
        radial-gradient(circle at 88% 16%, rgba(120, 191, 209, .22), transparent 24%),
        radial-gradient(circle at 12% 88%, rgba(184, 149, 118, .12), transparent 26%),
        linear-gradient(180deg, #f5fbfc 0%, #ffffff 78%);
}

/* Custom animated accordion */
.se-faq-list.se-accordion {
    background: linear-gradient(180deg, #fbfbfa 0%, #f6f4ef 100%);
    border: 1px solid var(--se-line);
    padding: 0 28px;
}
.se-faq-item {
    border-bottom: 1px solid var(--se-line);
}
.se-faq-item:last-child {
    border-bottom: 0;
}
.se-faq-trigger {
    width: 100%;
    min-height: 78px;
    padding: 24px 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    text-align: left;
    color: var(--se-heading);
    font-size: 19px;
    letter-spacing: -0.02em;
}
.se-faq-icon {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid var(--se-line);
    position: relative;
    transition: transform .34s ease, background .34s ease, border-color .34s ease;
}
.se-faq-icon::before,
.se-faq-icon::after {
    content: '';
    position: absolute;
    left: 8px;
    right: 8px;
    top: 50%;
    height: 1px;
    background: var(--se-muted);
    transition: transform .34s ease, background .34s ease;
}
.se-faq-icon::after {
    transform: rotate(90deg);
}
.se-faq-item.is-open .se-faq-icon {
    transform: rotate(180deg);
    background: #ffffff;
    border-color: rgba(45,51,54,.24);
}
.se-faq-item.is-open .se-faq-icon::after {
    transform: rotate(0deg);
}
.se-faq-panel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-4px);
    transition: max-height .46s cubic-bezier(.25,.8,.25,1), opacity .32s ease, transform .32s ease;
}
.se-faq-item.is-open .se-faq-panel {
    max-height: 220px;
    opacity: 1;
    transform: translateY(0);
}
.se-faq-panel p {
    margin: 0;
    padding: 0 52px 26px 0;
    color: var(--se-body);
    font-size: 15px;
}

/* More interaction without making the site noisy */
.se-product-card,
.se-image-card,
.se-process-card,
.se-bottom-cta-inner {
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
}
.se-image-card:hover,
.se-process-card:hover {
    transform: translateY(-3px);
    border-color: rgba(45,51,54,.22);
    box-shadow: 0 22px 60px rgba(38, 48, 53, .08);
}
.se-button {
    transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}
.se-button:hover {
    transform: translateY(-2px);
}
.se-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .72s ease, transform .72s cubic-bezier(.2,.8,.2,1);
}
.se-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Contact polish */
.se-footer-contact p + p {
    margin-top: 2px;
    font-size: 13px;
    color: var(--se-pale) !important;
}
.se-bottom-cta-actions .se-button-light {
    white-space: nowrap;
}

@media (max-width: 1180px) {
    .se-showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
    .se-showcase-card,
    .se-showcase-card.se-showcase-featured {
        min-height: 500px;
    }
}
@media (max-width: 900px) {
    .se-showcase-grid {
        grid-template-columns: 1fr !important;
    }
    .se-showcase-card,
    .se-showcase-card.se-showcase-featured {
        min-height: 520px;
    }
    .se-process-section {
        width: calc(100vw - 28px);
        padding: 52px 20px;
    }
    .se-faq-list.se-accordion {
        padding: 0 18px;
    }
    .se-faq-trigger {
        font-size: 17px;
        min-height: 70px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .se-reveal,
    .se-faq-panel,
    .se-faq-icon,
    .se-product-card,
    .se-image-card,
    .se-process-card,
    .se-button {
        transition: none !important;
    }
}


/* =========================
   Seirane Minimal v1.8
   square horizontal showcase carousel
   ========================= */
.se-showcase-shell {
    position: relative;
}
.se-showcase-nav {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 18px;
}
.se-showcase-arrow {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid var(--se-line);
    background: rgba(255,255,255,.88);
    color: var(--se-ink);
    cursor: pointer;
    transition: transform .22s ease, background-color .22s ease, border-color .22s ease, color .22s ease;
}
.se-showcase-arrow:hover {
    transform: translateY(-1px);
    background: #f4f8fa;
    border-color: #bfd1d7;
    color: #4e6773;
}
.se-showcase-grid {
    display: flex !important;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 2px 14px;
    border: 0 !important;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #c8d7dd transparent;
}
.se-showcase-grid::-webkit-scrollbar {
    height: 10px;
}
.se-showcase-grid::-webkit-scrollbar-thumb {
    background: #c8d7dd;
    border-radius: 999px;
}
.se-showcase-grid::-webkit-scrollbar-track {
    background: transparent;
}
.se-showcase-card,
.se-showcase-card.se-showcase-featured {
    position: relative;
    flex: 0 0 clamp(260px, 24vw, 340px);
    width: clamp(260px, 24vw, 340px);
    min-width: clamp(260px, 24vw, 340px);
    aspect-ratio: 1 / 1;
    border: 1px solid var(--se-line);
    border-radius: 0;
    overflow: hidden;
    scroll-snap-align: start;
    background: #eef4f6;
}
.se-showcase-card .se-product-image-link,
.se-showcase-card.se-showcase-featured .se-product-image-link {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    border: 0;
}
.se-showcase-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12,18,20,0.00) 24%, rgba(12,18,20,0.24) 62%, rgba(12,18,20,0.72) 100%);
    pointer-events: none;
    z-index: 1;
}
.se-showcase-card .se-product-image {
    transform: scale(1.04);
}
.se-showcase-card .se-product-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    min-height: 0;
    padding: 18px 18px 16px;
}
.se-showcase-card .se-product-title,
.se-showcase-card .se-product-title a,
.se-showcase-card .se-product-price,
.se-showcase-card .se-product-subtitle,
.se-showcase-card .se-product-status {
    color: #fff !important;
}
.se-showcase-card .se-product-title {
    font-size: 17px;
    line-height: 1.18;
    -webkit-line-clamp: 2;
}
.se-showcase-card .se-product-subtitle,
.se-showcase-card .se-product-status {
    color: rgba(255,255,255,.82) !important;
}
.se-showcase-card .se-product-status-row {
    align-items: center;
}
.se-showcase-card .se-status-dot {
    background: #cbe8d3;
}
.se-showcase-card .se-product-cta {
    background: rgba(255,255,255,.16) !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.35) !important;
    backdrop-filter: blur(8px);
}
.se-showcase-card .se-product-cta:hover {
    background: rgba(255,255,255,.26) !important;
}

@media (max-width: 900px) {
    .se-showcase-card,
    .se-showcase-card.se-showcase-featured {
        flex-basis: 76vw;
        width: 76vw;
        min-width: 76vw;
    }
}
@media (max-width: 560px) {
    .se-showcase-nav {
        margin-bottom: 12px;
    }
    .se-showcase-arrow {
        width: 38px;
        height: 38px;
    }
    .se-showcase-card,
    .se-showcase-card.se-showcase-featured {
        flex-basis: 82vw;
        width: 82vw;
        min-width: 82vw;
    }
}


/* =========================
   Seirane Minimal v1.9
   vertical process flow + truly square showcase
   ========================= */

/* Featured showcase: force true square cards for cushion products */
.se-showcase-grid {
    align-items: stretch;
}
.se-showcase-card,
.se-showcase-card.se-showcase-featured {
    flex: 0 0 min(30vw, 360px) !important;
    width: min(30vw, 360px) !important;
    min-width: min(30vw, 360px) !important;
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    display: block !important;
}
.se-showcase-card .se-product-image-link,
.se-showcase-card.se-showcase-featured .se-product-image-link {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
}
.se-showcase-card .se-product-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
}
.se-showcase-card .se-product-info {
    min-height: 0 !important;
}

/* Process section: convert from horizontal row to vertical flow */
.se-process-section {
    padding-top: 78px;
    padding-bottom: 78px;
}
.se-process-grid {
    display: flex !important;
    flex-direction: column;
    gap: 0;
    border: 0 !important;
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
}
.se-process-grid::before {
    content: '';
    position: absolute;
    left: 34px;
    top: 34px;
    bottom: 34px;
    width: 1px;
    background: linear-gradient(180deg, rgba(162,177,186,.65), rgba(162,177,186,.15));
}
.se-process-card {
    position: relative;
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 20px;
    align-items: start;
    min-height: 0 !important;
    padding: 28px 28px 28px 0 !important;
    padding-left: 0 !important;
    border: 0 !important;
    border-bottom: 1px solid var(--se-line) !important;
    background: transparent !important;
    box-shadow: none !important;
}
.se-process-card:first-child {
    border-top: 1px solid var(--se-line) !important;
}
.se-process-number {
    position: relative;
    z-index: 1;
    margin: 0 !important;
    width: 68px;
    height: 68px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #ffffff 0%, #f4f9fb 100%);
    border: 1px solid var(--se-line);
    color: #6d7f89 !important;
    font-size: 14px;
    letter-spacing: .12em;
}
.se-process-card h3,
.se-process-card p {
    grid-column: 2;
}
.se-process-card h3 {
    margin-top: 6px !important;
    margin-bottom: 10px !important;
    font-size: clamp(26px, 2.15vw, 34px) !important;
    line-height: 1.04 !important;
}
.se-process-card p {
    max-width: 680px;
}
.se-process-card::after {
    content: '↓';
    position: absolute;
    left: 26px;
    bottom: -13px;
    width: 18px;
    height: 18px;
    color: #9eb2ba;
    font-size: 18px;
    line-height: 1;
    background: #f6fafb;
    text-align: center;
}
.se-process-card:last-child::after {
    display: none;
}

@media (max-width: 1100px) {
    .se-showcase-card,
    .se-showcase-card.se-showcase-featured {
        flex-basis: min(38vw, 330px) !important;
        width: min(38vw, 330px) !important;
        min-width: min(38vw, 330px) !important;
    }
}

@media (max-width: 768px) {
    .se-process-grid::before {
        left: 27px;
    }
    .se-process-card {
        grid-template-columns: 72px 1fr;
        padding-right: 10px !important;
        gap: 14px;
    }
    .se-process-number {
        width: 54px;
        height: 54px;
        font-size: 13px;
    }
    .se-process-card h3 {
        font-size: 24px !important;
    }
    .se-showcase-card,
    .se-showcase-card.se-showcase-featured {
        flex-basis: 74vw !important;
        width: 74vw !important;
        min-width: 74vw !important;
    }
}

@media (max-width: 560px) {
    .se-showcase-card,
    .se-showcase-card.se-showcase-featured {
        flex-basis: 82vw !important;
        width: 82vw !important;
        min-width: 82vw !important;
    }
}


/* =========================
   Seirane Minimal v2.0
   simplified showcase line + process decor
   ========================= */
.se-showcase-card .se-product-info {
    padding: 18px 18px 16px !important;
}
.se-showcase-card .se-product-title {
    margin: 0 0 10px !important;
    font-size: 16px !important;
    line-height: 1.18 !important;
    max-width: 92%;
}
.se-showcase-meta-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 22px;
}
.se-showcase-meta-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    flex: 1 1 auto;
    font-size: 14px;
    color: rgba(255,255,255,.82);
}
.se-showcase-category,
.se-showcase-stock {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}
.se-showcase-category {
    overflow: hidden;
    text-overflow: ellipsis;
}
.se-showcase-card .se-product-price {
    white-space: nowrap;
    flex: 0 0 auto;
    color: #fff !important;
    font-size: 14px !important;
}
.se-showcase-card .se-product-main-line,
.se-showcase-card .se-product-subtitle,
.se-showcase-card .se-product-status-row,
.se-showcase-card .se-product-cta {
    display: none !important;
}

.se-process-section {
    position: relative;
    overflow: hidden;
}
.se-process-decor {
    position: absolute;
    top: 120px;
    width: 138px;
    height: 300px;
    pointer-events: none;
    opacity: .92;
}
.se-process-decor-left {
    left: 18px;
}
.se-process-decor-right {
    right: 18px;
}
.se-process-decor img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: saturate(.92) contrast(1.02);
}
.se-process-shape {
    position: absolute;
    display: block;
    border: 1px solid rgba(156,180,190,.45);
    background: rgba(255,255,255,.26);
    backdrop-filter: blur(6px);
}
.se-process-shape-a {
    width: 108px;
    height: 146px;
    left: 10px;
    top: 12px;
    border-radius: 58% 42% 46% 54% / 48% 52% 48% 52%;
    background: linear-gradient(180deg, rgba(255,255,255,.48), rgba(199,224,232,.12));
}
.se-process-shape-b {
    width: 86px;
    height: 86px;
    left: 0;
    top: 168px;
    border-radius: 999px;
    background: radial-gradient(circle at 36% 36%, rgba(255,255,255,.52), rgba(198,224,231,.18));
}
.se-process-shape-c {
    width: 108px;
    height: 146px;
    right: 10px;
    top: 20px;
    border-radius: 42% 58% 52% 48% / 48% 44% 56% 52%;
    background: linear-gradient(180deg, rgba(255,255,255,.46), rgba(207,231,238,.12));
}
.se-process-shape-d {
    width: 78px;
    height: 78px;
    right: 4px;
    top: 186px;
    border-radius: 999px;
    background: radial-gradient(circle at 32% 32%, rgba(255,255,255,.56), rgba(198,224,231,.16));
}
.se-process-grid {
    position: relative;
    z-index: 1;
}

@media (max-width: 1180px) {
    .se-process-decor {
        width: 108px;
        height: 240px;
    }
}
@media (max-width: 900px) {
    .se-process-decor {
        display: none;
    }
    .se-showcase-meta-line {
        gap: 10px;
    }
    .se-showcase-meta-left {
        gap: 8px;
        font-size: 13px;
    }
}
@media (max-width: 560px) {
    .se-showcase-meta-left {
        display: block;
    }
    .se-showcase-category {
        display: none;
    }
}


/* =========================
   Seirane Minimal v2.1
   cleaner showcase inspired by reference + no process side decor
   ========================= */
.se-process-decor {
    display: none !important;
}

/* Make showcase closer to the reference: clean image on top, info below */
.se-showcase-shell {
    position: relative;
}
.se-showcase-nav {
    position: absolute;
    right: 0;
    top: -56px;
    margin-bottom: 0;
}
.se-showcase-grid {
    display: flex !important;
    gap: 0 !important;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 12px !important;
    scroll-snap-type: x proximity;
    border-top: 1px solid var(--se-line) !important;
    border-left: 1px solid var(--se-line) !important;
    background: #fff;
}
.se-showcase-card,
.se-showcase-card.se-showcase-featured {
    flex: 0 0 min(32vw, 470px) !important;
    width: min(32vw, 470px) !important;
    min-width: min(32vw, 470px) !important;
    aspect-ratio: auto !important;
    border: 0 !important;
    border-right: 1px solid var(--se-line) !important;
    border-bottom: 1px solid var(--se-line) !important;
    border-radius: 0 !important;
    background: #fbfbfb !important;
    overflow: hidden;
    position: relative;
    display: flex !important;
    flex-direction: column !important;
    min-height: 0 !important;
    height: auto !important;
    scroll-snap-align: start;
    transition: transform .34s ease, box-shadow .34s ease, background-color .28s ease;
}
.se-showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(18,31,38,.08);
    background: #fff !important;
}
.se-showcase-card::after {
    display: none !important;
}
.se-showcase-card .se-product-image-link,
.se-showcase-card.se-showcase-featured .se-product-image-link {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 18px 8px;
    background: #f7f7f7;
}
.se-showcase-card .se-product-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    transform: none !important;
    transition: transform .45s cubic-bezier(.2,.65,.18,1), filter .3s ease;
}
.se-showcase-card:hover .se-product-image {
    transform: translateY(-3px) scale(1.02) !important;
    filter: saturate(1.02);
}
.se-showcase-card .se-product-info {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    z-index: 2;
    min-height: 136px !important;
    padding: 14px 18px 16px !important;
    background: #fbfbfb;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.se-showcase-card .se-product-title {
    margin: 0 0 14px !important;
    max-width: none;
    font-size: 16px !important;
    line-height: 1.22 !important;
    font-weight: 470;
    color: #23282c !important;
    min-height: 38px;
}
.se-showcase-card .se-product-title a {
    color: #23282c !important;
}
.se-showcase-meta-line {
    display: grid !important;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 14px;
    min-height: 42px;
}
.se-showcase-meta-left {
    display: grid !important;
    gap: 8px;
    align-items: start;
    min-width: 0;
    color: #8a9198;
    font-size: 14px;
}
.se-showcase-category,
.se-showcase-stock {
    color: #8a9198 !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.se-showcase-card .se-product-price {
    font-size: 15px !important;
    line-height: 1;
    color: #59636b !important;
    white-space: nowrap;
    align-self: center;
    padding-bottom: 6px;
}
.se-showcase-card .se-product-main-line,
.se-showcase-card .se-product-subtitle,
.se-showcase-card .se-product-status-row,
.se-showcase-card .se-product-cta {
    display: none !important;
}
.se-status-dot {
    width: 10px;
    height: 10px;
    background: #77c37e;
    box-shadow: 0 0 0 4px rgba(119,195,126,.12);
}

/* More subtle animations sitewide */
.se-button,
.se-text-link,
.se-image-card,
.se-process-card,
.se-faq-item,
.se-showcase-arrow {
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background-color .3s ease, color .25s ease, opacity .25s ease;
}
.se-image-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(18,31,38,.06);
}
.se-process-card {
    transition-delay: calc(var(--se-delay, 0) * 50ms);
}
.se-process-card:nth-child(1) { --se-delay: 1; }
.se-process-card:nth-child(2) { --se-delay: 2; }
.se-process-card:nth-child(3) { --se-delay: 3; }
.se-process-card:nth-child(4) { --se-delay: 4; }
.se-process-card:hover {
    transform: translateX(6px);
}
.se-faq-item {
    will-change: transform;
}
.se-faq-item:hover {
    transform: translateX(4px);
}

/* Refine process section without side decor */
.se-process-section {
    overflow: visible;
}
.se-process-grid {
    max-width: 980px;
    margin: 0 auto;
}

@media (max-width: 1080px) {
    .se-showcase-card,
    .se-showcase-card.se-showcase-featured {
        flex-basis: min(44vw, 420px) !important;
        width: min(44vw, 420px) !important;
        min-width: min(44vw, 420px) !important;
    }
}
@media (max-width: 768px) {
    .se-showcase-nav {
        position: static;
        justify-content: flex-end;
        margin-bottom: 14px;
    }
    .se-showcase-grid {
        border-top: 1px solid var(--se-line) !important;
    }
    .se-showcase-card,
    .se-showcase-card.se-showcase-featured {
        flex-basis: 72vw !important;
        width: 72vw !important;
        min-width: 72vw !important;
    }
}
@media (max-width: 560px) {
    .se-showcase-card,
    .se-showcase-card.se-showcase-featured {
        flex-basis: 84vw !important;
        width: 84vw !important;
        min-width: 84vw !important;
    }
    .se-showcase-card .se-product-info {
        min-height: 126px !important;
    }
}


/* =========================
   Seirane Minimal v2.2
   showcase header conflict fix
   ========================= */
.se-showcase-section .se-section-heading-split {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 28px;
    margin-bottom: 24px;
}
.se-showcase-section .se-text-link {
    justify-self: end;
    align-self: end;
    margin-bottom: 8px;
    color: #7b848b;
}
.se-showcase-shell {
    position: relative;
}
.se-showcase-nav {
    position: static !important;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin: -8px 0 16px !important;
    pointer-events: auto;
}
.se-showcase-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 768px) {
    .se-showcase-section .se-section-heading-split {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .se-showcase-section .se-text-link {
        justify-self: start;
        margin-bottom: 0;
    }
    .se-showcase-nav {
        justify-content: flex-start;
        margin: 0 0 14px !important;
    }
}


/* =========================
   Seirane Minimal v2.4
   clearer collection explanation
   ========================= */
.se-section-lead {
    max-width: 720px;
    margin: 18px 0 0;
    color: #7f8790;
    font-size: 17px;
    line-height: 1.55;
}
.se-collection-card-v2 .se-image-card-copy {
    min-height: 258px;
    display: flex;
    flex-direction: column;
}
.se-collection-card-v2 .se-image-card-copy h3 {
    margin-top: 0;
}
.se-collection-card-v2 .se-image-card-copy p {
    color: #68717a;
}
.se-card-link {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 24px;
    color: #4c6f7d;
    font-size: 14px;
    border-bottom: 1px solid rgba(76,111,125,.35);
}
.se-card-link::after {
    content: '→';
    transition: transform .25s ease;
}
.se-image-card:hover .se-card-link::after {
    transform: translateX(4px);
}


/* =========================
   Seirane Minimal v2.5
   compact collections heading
   ========================= */
.se-collections-section {
    padding-top: 64px;
}
.se-collections-section .se-section-heading {
    display: block !important;
    max-width: 880px;
    margin: 0 0 30px !important;
}
.se-collections-section .se-eyebrow {
    margin: 0 0 18px !important;
}
.se-collections-section .se-section-heading h2 {
    max-width: 820px;
    margin: 0 !important;
    font-size: clamp(34px, 3.6vw, 54px);
    line-height: 1.04;
}
.se-collections-section .se-section-lead {
    max-width: 680px;
    margin: 16px 0 0 !important;
    font-size: 16px;
    line-height: 1.55;
    color: #727b84;
}
.se-collections-section .se-image-grid {
    margin-top: 0;
}
@media (max-width: 768px) {
    .se-collections-section {
        padding-top: 48px;
    }
    .se-collections-section .se-section-heading {
        margin-bottom: 24px !important;
    }
}
