/** Shopify CDN: Minification failed

Line 218:0 Unexpected "}"
Line 237:0 Unexpected "}"
Line 300:0 Expected "}" to go with "{"

**/
/* ==========================================================================
   section-custom-light-system.css
   Home page "system" section: sun/ambient/targeted framing, each half
   marked with a thin colored outline box (amber / red), block-based
   product grids with individual white cards per product. Side margins
   matched to section-custom-product-grid3.css (12px mobile, 40px total
   desktop inset).
   ========================================================================== */

.custom-light-system--section {
    background-color: #ffffffff;
    padding: 40px 12px;
}
@media screen and (min-width: 767px) {
    .custom-light-system--section {
        padding: 60px 20px;
    }
}

.custom-light-system--wrapper {
    max-width: 100%;
    margin: 0 auto;
}
@media screen and (min-width: 767px) {
    .custom-light-system--wrapper {
        padding: 0 20px;
    }
}

/* ---------- Top framing ---------- */
.custom-light-system__intro {
    max-width: 720px;
    margin: 0 0 16px;
}
@media screen and (min-width: 1024px) {
    .custom-light-system__intro {
        margin: 0 0 22px;
    }
}

.custom-light-system__heading {
    font-family: Barlow, sans-serif !important;
    font-weight: 500;
    font-size: 46px;
    line-height: 1.05;
    letter-spacing: -1px;
    color: #16171b;
    margin: 0 0 16px;
}
@media screen and (min-width: 1024px) {
    .custom-light-system__heading {
        font-size: 48px;
    }
}

.custom-light-system__body {
    font-family: Inter, sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.3;
    color: #131313ff;
    letter-spacing: 1;
}
.custom-light-system__body p {
    margin: 0 0 16px;
}
.custom-light-system__body p:last-child {
    margin-bottom: 0;
}

/* ---------- Zone ---------- */
.custom-light-system__zone {
    display: flex;
    flex-direction: column;
}

/* Half sections — outline border only, no fill */
.custom-light-system__half {
    border: 1.5px solid transparent;
    border-radius: 6px;
    padding: 12px 14px;
}
@media screen and (min-width: 767px) {
    .custom-light-system__half {
        padding: 24px 18px 32px;
    }
}
.custom-light-system__half--ambient {
    border-color: rgba(250, 181, 78, 0);
}
.custom-light-system__half--targeted {
    border-color: rgba(255, 255, 255, 0);
}

/* ---------- Half header: title + sentence + benefit pills ----------
   Desktop: two-column grid so pills sit pinned to the top-right. */
.custom-light-system__half-header {
    max-width: 720px;
    margin: 0 0 0;
}
@media screen and (min-width: 767px) {
    .custom-light-system__half-header {
        display: grid;
        grid-template-columns: 1fr auto;
        column-gap: 32px;
        align-items: start;
        max-width: none;
        margin: 0 0 0;
    }
}

/* Colored divider between header and product grid — separate element
   so each half can match its own pill accent color. */
.custom-light-system__divider {
    height: 2px;
    border: none;
    border-radius: 2px;
    margin: 16px 0 28px;
}
@media screen and (min-width: 767px) {
    .custom-light-system__divider {
        margin: 10px 0 32px;
    }
}
.custom-light-system__half--ambient .custom-light-system__divider {
    background-color: #000000ff;
}
.custom-light-system__half--targeted .custom-light-system__divider {
    background-color: #000000ff;
}

.custom-light-system__half-title {
    font-family: Barlow, sans-serif !important;
    font-weight: 500;
    font-size: 32px;
    line-height: 1;
    letter-spacing: -0.5px;
    color: #16171b;
    margin: 0 0 6px;
}
@media screen and (min-width: 767px) {
    .custom-light-system__half-title {
        font-size: 36px;
        grid-column: 1;
        grid-row: 1;
    }
}

.custom-light-system__half-text {
    font-family: Inter, sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.5;
    color: #16171b;
    margin: 0 0 16px;
}
@media screen and (min-width: 767px) {
    .custom-light-system__half-text {
        grid-column: 1;
        grid-row: 2;
        margin: 0;
    }
}

.custom-light-system__benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}
@media screen and (min-width: 767px) {
    .custom-light-system__benefits {
        flex-wrap: nowrap;
        width: max-content;
        max-width: none;
        grid-column: 2;
        grid-row: 1 / 3;
        align-self: start;
        justify-self: end;
    }
}



/* ---------- Product grid ---------- */

.custom-light-system__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)); /* 3 per row mobile */
    gap: 20px 10px;
}
@media screen and (min-width: 1024px) {
    .custom-light-system__grid {
        grid-template-columns: repeat(6, minmax(0, 1fr)); /* 6 per row desktop */
        gap: 28px 20px;
    }
}

.custom-light-system__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    text-decoration: none;
    color: inherit;
    min-width: 0;
}
/* 3 per row mobile */
}
@media screen and (min-width: 1024px) {
    .custom-light-system__item {
        flex: 0 0 calc((100% - 100px) / 6); /* 6 per row desktop */
    }
}

/* Individual white card behind each product image */
.custom-light-system__item-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    margin: 0 0 10px;
    overflow: hidden;
    background-color: #efe9ddff;
    border: 1px solid #efe9ddff;
    border-radius: 12px;
}
}
.custom-light-system__item-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10%;
    transition: transform 0.35s ease;
}
@media (hover: hover) and (pointer: fine) {
    .custom-light-system__item:hover .custom-light-system__item-image img {
        transform: scale(1.06);
    }
}
@media (prefers-reduced-motion: reduce) {
    .custom-light-system__item-image img {
        transition: none;
    }
}

.custom-light-system__item-name {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #16171b;
    margin: 0 0 4px;
    line-height: 1.3;
}
@media screen and (min-width: 1024px) {
    .custom-light-system__item-name {
        font-size: 14px;
    }
@media (hover: hover) and (pointer: fine) {
    .custom-light-system__item:hover .custom-light-system__item-name {
        text-decoration: underline;
    }
}

.custom-light-system__item-text {
    font-family: Inter, sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 1.4;
    color: #16171b;
    margin: 0;
}

.custom-light-system__item:focus-visible {
    outline: 2px solid #16171b;
    outline-offset: 4px;
}

/* ---------- Spacer between the two halves ---------- */
.custom-light-system__spacer {
    height: 20px;
}
@media screen and (min-width: 767px) {
    .custom-light-system__spacer {
        height: 0px;
    }
}
