.sa-mix-page {
    --mix-ink: #10291d;
    --mix-green: #42904d;
    --mix-green-dark: #286b35;
    --mix-yellow: #fff001;
    --mix-cream: #f7f5ee;
    --mix-mint: #dfe9df;
    --mix-paper: #fffdf7;
    --mix-white: #fff;
    --mix-muted: #637168;
    --mix-line: rgba(16, 41, 29, .17);
    --mix-shadow: 0 22px 60px rgba(16, 41, 29, .11);
    color: var(--mix-ink);
    background: var(--mix-paper);
    font-family: AvenirNextLTPro, Avenir, Arial, sans-serif;
    overflow: clip;
}

.sa-mix-page *,
.sa-mix-page *::before,
.sa-mix-page *::after {
    box-sizing: border-box;
}

.sa-mix-page h1,
.sa-mix-page h2,
.sa-mix-page h3,
.sa-mix-page h4,
.sa-mix-page p,
.sa-mix-page ul,
.sa-mix-page ol,
.sa-mix-page dl,
.sa-mix-page figure {
    margin-top: 0;
}

.sa-mix-page button,
.sa-mix-page input {
    font: inherit;
}

.sa-mix-page button:focus-visible,
.sa-mix-page input:focus-visible,
.sa-mix-page a:focus-visible,
.sa-mix-page summary:focus-visible {
    outline: 3px solid rgba(66, 144, 77, .35);
    outline-offset: 3px;
}

.sa-mix-container {
    width: min(100% - 40px, 1240px);
    margin-inline: auto;
}

.sa-mix-eyebrow {
    margin-bottom: 10px;
    color: var(--mix-green-dark);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.sa-mix-eyebrow > span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    margin-right: 8px;
    padding: 4px 10px;
    border: 2px solid var(--mix-ink);
    border-radius: 999px;
    background: var(--mix-yellow);
    color: var(--mix-ink);
    letter-spacing: .07em;
}

.sa-mix-hero {
    padding: 26px 0 74px;
    background:
        radial-gradient(circle at 8% 13%, rgba(255, 240, 1, .34), transparent 23%),
        radial-gradient(circle at 91% 87%, rgba(66, 144, 77, .12), transparent 27%),
        linear-gradient(145deg, #f8f6ef 0%, #edf3e9 100%);
}

.sa-mix-notices:empty {
    display: none;
}

.sa-mix-notices .woocommerce-message,
.sa-mix-notices .woocommerce-error {
    margin: 0 0 22px !important;
    padding: 16px 20px 16px 48px !important;
    border: 0 !important;
    border-radius: 14px !important;
    background: #fff !important;
    box-shadow: 0 8px 28px rgba(16, 41, 29, .1) !important;
}

.sa-mix-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(420px, .97fr);
    align-items: center;
    gap: clamp(42px, 6vw, 84px);
}

.sa-mix-gallery {
    min-width: 0;
}

.sa-mix-gallery__stage {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid rgba(16, 41, 29, .1);
    border-radius: 28px 28px 100px 28px;
    background: #c8e4c3;
    box-shadow: var(--mix-shadow);
}

.sa-mix-gallery__slide {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.02);
    transition: opacity .28s ease, transform .36s ease;
}

.sa-mix-gallery__slide.is-active {
    z-index: 1;
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.sa-mix-gallery__thumbs {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.sa-mix-gallery__thumbs button {
    position: relative;
    width: 72px;
    height: 72px;
    padding: 3px;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 13px;
    background: #fff;
    cursor: pointer;
    transition: border-color .18s ease, transform .18s ease;
}

.sa-mix-gallery__thumbs button:hover,
.sa-mix-gallery__thumbs button.is-active {
    border-color: var(--mix-ink);
    transform: translateY(-2px);
}

.sa-mix-gallery__thumbs img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.sa-mix-gallery__video-thumb > span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    padding-left: 2px;
    border-radius: 50%;
    background: var(--mix-yellow);
    color: var(--mix-ink);
    font-size: 12px;
    transform: translate(-50%, -50%);
}

.sa-mix-intro h1 {
    max-width: 680px;
    margin-bottom: 20px;
    color: var(--mix-ink);
    font-size: clamp(43px, 5.2vw, 72px);
    font-weight: 950;
    line-height: .98;
    letter-spacing: -.045em;
}

.sa-mix-lead {
    max-width: 640px;
    margin-bottom: 26px;
    color: #354a3f;
    font-size: clamp(18px, 2vw, 21px);
    line-height: 1.55;
}

.sa-mix-benefits {
    display: grid;
    gap: 10px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.sa-mix-benefits li {
    position: relative;
    display: grid;
    gap: 2px;
    padding: 13px 16px 13px 48px;
    border: 1px solid var(--mix-line);
    border-radius: 13px;
    background: rgba(255, 255, 255, .72);
}

.sa-mix-benefits li::before {
    content: "✓";
    position: absolute;
    top: 15px;
    left: 17px;
    display: grid;
    place-items: center;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background: var(--mix-yellow);
    color: var(--mix-ink);
    font-size: 12px;
    font-weight: 950;
}

.sa-mix-benefits strong {
    color: var(--mix-ink);
    font-size: 16px;
    font-weight: 950;
}

.sa-mix-benefits span {
    color: var(--mix-muted);
    font-size: 13px;
}

.sa-mix-proof-note {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px 16px;
    border-radius: 13px;
    background: var(--mix-ink);
    color: #fff;
}

.sa-mix-proof-note > span {
    display: grid;
    flex: 0 0 35px;
    place-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--mix-yellow);
    color: var(--mix-ink);
    font-weight: 950;
}

.sa-mix-proof-note p {
    display: grid;
    gap: 1px;
    margin: 0;
    color: #dbe4de;
    font-size: 13px;
}

.sa-mix-proof-note strong {
    color: #fff;
    font-size: 15px;
}

.sa-mix-builder {
    padding: 80px 0 92px;
    background: #fff;
}

.sa-mix-builder__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: start;
    gap: 34px;
}

.sa-mix-form {
    display: grid;
    min-width: 0;
    gap: 20px;
    margin: 0 !important;
}

.sa-mix-builder__heading {
    padding: 0 6px 10px;
}

.sa-mix-builder__heading h2,
.sa-mix-section-heading h2 {
    margin-bottom: 12px;
    color: var(--mix-ink);
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 950;
    line-height: 1.06;
    letter-spacing: -.035em;
}

.sa-mix-builder__heading > p:last-child,
.sa-mix-section-heading > p:last-child {
    max-width: 760px;
    margin-bottom: 0;
    color: var(--mix-muted);
    font-size: 17px;
    line-height: 1.55;
}

.sa-mix-step {
    min-width: 0;
    padding: clamp(20px, 3vw, 30px);
    border: 1px solid var(--mix-line);
    border-radius: 22px;
    background: var(--mix-paper);
    box-shadow: 0 10px 34px rgba(16, 41, 29, .055);
}

.sa-mix-step__title {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
}

.sa-mix-step__title > span {
    display: grid;
    flex: 0 0 36px;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 2px solid var(--mix-ink);
    border-radius: 10px;
    background: var(--mix-yellow);
    font-size: 15px;
    font-weight: 950;
}

.sa-mix-step__title h3 {
    margin: 0 0 3px;
    color: var(--mix-ink);
    font-size: 22px;
    font-weight: 950;
    letter-spacing: -.02em;
}

.sa-mix-step__title p {
    margin: 0;
    color: var(--mix-muted);
    font-size: 14px;
    line-height: 1.45;
}

.sa-mix-materials {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.sa-mix-material {
    position: relative;
    display: grid;
    align-content: start;
    min-width: 0;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 7px 22px rgba(16, 41, 29, .07);
    cursor: pointer;
    transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.sa-mix-material:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(16, 41, 29, .12);
}

.sa-mix-material.is-selected {
    border-color: var(--mix-ink);
}

.sa-mix-material.is-disabled {
    opacity: .45;
    cursor: not-allowed;
}

.sa-mix-material > input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.sa-mix-material__visual,
.sa-mix-material-guide__visual {
    position: relative;
    display: block;
    overflow: hidden;
    background: #e7e9e7;
}

.sa-mix-material__visual {
    height: 128px;
}

.sa-mix-material__visual img,
.sa-mix-material-guide__visual img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
}

.sa-mix-material__visual--standard {
    background: linear-gradient(145deg, #ffef89, #f6b7d6 48%, #8ad9bb);
}

.sa-mix-material__visual--trasparente {
    background:
        linear-gradient(45deg, rgba(255,255,255,.62) 25%, transparent 25% 75%, rgba(255,255,255,.62) 75%),
        linear-gradient(45deg, rgba(255,255,255,.62) 25%, #a8d8cd 25% 75%, rgba(255,255,255,.62) 75%);
    background-position: 0 0, 10px 10px;
    background-size: 20px 20px;
}

.sa-mix-material__visual--olografico {
    background: conic-gradient(from 30deg, #8ae9f0, #edaff2, #fff0a2, #9ef0c2, #a8b8ff, #8ae9f0);
}

.sa-mix-material__visual--glitter {
    background:
        radial-gradient(circle, rgba(255,255,255,.9) 0 2px, transparent 2.5px) 0 0 / 17px 17px,
        radial-gradient(circle, rgba(255,240,1,.9) 0 1px, transparent 1.5px) 8px 5px / 13px 13px,
        linear-gradient(145deg, #8a5ad1, #f3a2ec, #5fc6c0);
}

.sa-mix-material__visual--broken-glass {
    background:
        conic-gradient(from 15deg at 66% 30%, transparent 0 12%, rgba(72, 255, 188, .72) 13% 19%, transparent 20% 38%, rgba(178, 118, 255, .85) 39% 46%, transparent 47%),
        conic-gradient(from -42deg at 31% 72%, #bbf9ec, #efb8ff, #9af7cd, #fff1a7, #b5bdff, #bbf9ec);
}

.sa-mix-material__visual--broken-glass::after {
    content: "";
    position: absolute;
    inset: 15% 22%;
    border: 8px solid rgba(255, 255, 255, .75);
    clip-path: polygon(50% 0, 95% 23%, 78% 100%, 14% 88%, 0 27%);
    transform: rotate(11deg);
}

.sa-mix-material__visual--catarifrangente,
.sa-mix-material__visual--reflective {
    background:
        radial-gradient(circle at 64% 26%, rgba(255, 255, 255, .98) 0 5%, transparent 24%),
        linear-gradient(135deg, #111 0 30%, #dfe4e4 31% 42%, #151515 43% 61%, #f7f7f1 62% 72%, #1a1a1a 73%);
}

.sa-mix-material__visual--argento {
    background: linear-gradient(125deg, #777 0, #edf0ef 27%, #919796 47%, #fff 69%, #7d8583 100%);
}

.sa-mix-material__visual--oro {
    background: linear-gradient(125deg, #875700 0, #ffe873 27%, #ba7900 47%, #fff0a3 68%, #895600 100%);
}

.sa-mix-material__copy {
    display: grid;
    gap: 4px;
    min-height: 108px;
    padding: 13px;
}

.sa-mix-material__copy strong {
    color: var(--mix-ink);
    font-size: 15px;
    font-weight: 950;
}

.sa-mix-material__copy small {
    color: var(--mix-muted);
    font-size: 11px;
    line-height: 1.35;
}

.sa-mix-material__check {
    position: absolute;
    z-index: 2;
    top: 9px;
    right: 9px;
    display: none;
    place-items: center;
    width: 27px;
    height: 27px;
    border: 2px solid var(--mix-ink);
    border-radius: 50%;
    background: var(--mix-yellow);
    font-size: 13px;
    font-weight: 950;
}

.sa-mix-material.is-selected .sa-mix-material__check {
    display: grid;
}

.sa-mix-size-note {
    margin: -2px 0 16px;
    padding: 12px 14px;
    border: 1px solid #e6d500;
    border-radius: 11px;
    background: #fffbd1;
    color: var(--mix-ink);
    font-size: 13px;
    line-height: 1.45;
}

.sa-mix-artwork-groups {
    display: grid;
    gap: 14px;
}

.sa-mix-artwork-group {
    min-width: 0;
    padding: 17px;
    border: 1px solid var(--mix-line);
    border-radius: 14px;
    background: #fff;
}

.sa-mix-artwork-group > header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 13px;
}

.sa-mix-artwork-group > header > div {
    display: flex;
    align-items: center;
    gap: 9px;
}

.sa-mix-artwork-group h4 {
    margin: 0;
    color: var(--mix-ink);
    font-size: 17px;
    font-weight: 950;
}

.sa-mix-artwork-group header small {
    color: var(--mix-muted);
    font-size: 11px;
    font-weight: 800;
}

.sa-mix-artwork-group__dot {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    border: 2px solid var(--mix-ink);
    border-radius: 50%;
    background: #fff;
}

.sa-mix-artwork-group__dot--standard { background: #efb4d1; }
.sa-mix-artwork-group__dot--trasparente { background: linear-gradient(135deg, #fff 50%, #bde6dc 50%); }
.sa-mix-artwork-group__dot--olografico { background: linear-gradient(135deg, #91e7f0, #f0b8ea, #f9e09a); }
.sa-mix-artwork-group__dot--glitter { background: #e8a4ef; box-shadow: inset 0 0 0 3px rgba(255,255,255,.65); }
.sa-mix-artwork-group__dot--broken-glass { background: conic-gradient(#a8fff0, #eaa8ff, #fff4a5, #a8fff0); }
.sa-mix-artwork-group__dot--catarifrangente,
.sa-mix-artwork-group__dot--reflective { background: linear-gradient(135deg, #111 50%, #f5f5f5 50%); }
.sa-mix-artwork-group__dot--argento { background: linear-gradient(135deg, #777, #f5f5f5, #aaa); }
.sa-mix-artwork-group__dot--oro { background: linear-gradient(135deg, #8a5b00, #ffdf55, #a36b00); }

.sa-mix-artwork-group__rows {
    display: grid;
    gap: 10px;
}

.sa-mix-artwork {
    display: grid;
    grid-template-columns: 32px minmax(145px, 1.4fr) repeat(3, minmax(82px, .7fr)) 38px;
    align-items: end;
    gap: 8px;
    min-width: 0;
}

.sa-mix-artwork__number {
    display: grid;
    place-items: center;
    width: 31px;
    height: 50px;
    border-radius: 9px;
    background: var(--mix-mint);
    font-size: 12px;
    font-weight: 950;
}

.sa-mix-field {
    display: grid;
    min-width: 0;
    gap: 5px;
}

.sa-mix-field > span {
    overflow: hidden;
    color: var(--mix-muted);
    font-size: 10px;
    font-weight: 800;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sa-mix-field input {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    padding: 10px 9px;
    border: 2px solid rgba(16, 41, 29, .25);
    border-radius: 9px;
    background: #fff;
    color: var(--mix-ink);
    font-size: 14px;
}

.sa-mix-field input[type="number"] {
    font-size: 16px;
    font-weight: 950;
    text-align: center;
}

.sa-mix-field input:focus {
    outline: 0;
    border-color: var(--mix-green);
    box-shadow: 0 0 0 3px rgba(66, 144, 77, .16);
}

.sa-mix-field input.is-invalid:not(:focus) {
    border-color: #b54b38;
    background: #fff8f6;
}

.sa-mix-artwork__remove {
    width: 38px;
    height: 50px;
    padding: 0;
    border: 0;
    border-radius: 9px;
    background: #f6e4e1;
    color: #8a2e1e;
    font-size: 24px;
    cursor: pointer;
}

.sa-mix-artwork__remove:disabled,
.sa-mix-add-artwork:disabled {
    opacity: .3;
    cursor: not-allowed;
}

.sa-mix-add-artwork {
    margin-top: 12px;
    padding: 8px 0;
    border: 0;
    background: transparent;
    color: var(--mix-green-dark);
    font-size: 13px;
    font-weight: 950;
    cursor: pointer;
}

.sa-mix-composition-status {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 11px;
    font-size: 13px;
    font-weight: 850;
}

.sa-mix-composition-status.is-valid {
    background: #e4f4e6;
    color: #1f642b;
}

.sa-mix-composition-status.is-error {
    background: #fff1cc;
    color: #735500;
}

.sa-mix-file-note {
    display: grid;
    gap: 5px;
    padding: 16px;
    border: 1px solid rgba(16, 41, 29, .18);
    border-radius: 12px;
    background: var(--mix-mint);
    color: var(--mix-muted);
    font-size: 13px;
    line-height: 1.5;
}

.sa-mix-file-note strong {
    color: var(--mix-ink);
    font-size: 14px;
    font-weight: 950;
}

.sa-mix-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    min-height: 64px;
    padding: 15px 20px;
    border: 2px solid var(--mix-ink);
    border-radius: 14px;
    background: var(--mix-yellow);
    color: var(--mix-ink);
    font-size: 17px;
    font-weight: 950;
    cursor: pointer;
    box-shadow: 0 9px 0 var(--mix-ink);
    transition: transform .16s ease, box-shadow .16s ease;
}

.sa-mix-submit:hover:not(:disabled) {
    transform: translateY(3px);
    box-shadow: 0 6px 0 var(--mix-ink);
}

.sa-mix-submit:disabled,
.sa-mix-price-card__submit:disabled {
    opacity: .45;
    cursor: not-allowed;
    box-shadow: none;
}

.sa-mix-submit strong {
    font-size: 20px;
}

.sa-mix-submit-note {
    margin: -4px 4px 0;
    color: var(--mix-muted);
    font-size: 11px;
    line-height: 1.5;
    text-align: center;
}

.sa-mix-price-card {
    position: sticky;
    top: 112px;
    padding: 25px;
    border: 2px solid var(--mix-ink);
    border-radius: 22px;
    background: var(--mix-ink);
    color: #fff;
    box-shadow: var(--mix-shadow);
}

.sa-mix-price-card__eyebrow {
    margin-bottom: 8px;
    color: var(--mix-yellow);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.sa-mix-price-card__total {
    margin-bottom: 3px;
    color: #fff;
    font-size: clamp(39px, 5vw, 54px);
    font-weight: 950;
    line-height: 1;
    letter-spacing: -.04em;
}

.sa-mix-price-card__caption {
    margin: 0 0 23px;
    color: #c7d3ca;
    font-size: 13px;
}

.sa-mix-price-card__included {
    display: grid;
    gap: 4px;
    margin: 0 0 18px;
    padding: 13px 14px;
    border: 1px solid rgba(255, 240, 1, .45);
    border-radius: 12px;
    background: rgba(255, 255, 255, .08);
}

.sa-mix-price-card__included strong {
    color: var(--mix-yellow);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.sa-mix-price-card__included span {
    color: #fff;
    font-size: 12px;
    line-height: 1.45;
}

.sa-mix-price-card dl {
    display: grid;
    gap: 0;
    margin: 0 0 18px;
}

.sa-mix-price-card dl > div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 11px 0;
    border-top: 1px solid rgba(255, 255, 255, .16);
    font-size: 13px;
}

.sa-mix-price-card dt {
    color: #c7d3ca;
}

.sa-mix-price-card dt small {
    display: block;
    max-width: 190px;
    margin-top: 2px;
    color: var(--mix-yellow);
    font-size: 9px;
    font-weight: 900;
    line-height: 1.3;
    text-transform: uppercase;
}

.sa-mix-price-card dd {
    flex: 0 0 auto;
    margin: 0;
    color: #fff;
    font-weight: 900;
}

.sa-mix-price-card .sa-mix-price-card__grand-total {
    margin-top: 2px;
    border-top-color: rgba(255, 240, 1, .65);
    font-size: 15px;
}

.sa-mix-price-card__grand-total dt,
.sa-mix-price-card__grand-total dd {
    color: #fff;
    font-weight: 950;
}

.sa-mix-price-card__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 17px;
}

.sa-mix-price-card__stats span {
    display: grid;
    gap: 2px;
    padding: 9px 5px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .09);
    color: #c7d3ca;
    font-size: 9px;
    text-align: center;
}

.sa-mix-price-card__stats strong {
    color: #fff;
    font-size: 15px;
}

.sa-mix-price-card__warning {
    margin: 0 0 14px;
    padding: 10px;
    border-radius: 9px;
    background: var(--mix-yellow);
    color: var(--mix-ink);
    font-size: 12px;
    font-weight: 900;
}

.sa-mix-price-card__submit {
    width: 100%;
    min-height: 48px;
    margin-bottom: 14px;
    padding: 10px 14px;
    border: 2px solid var(--mix-yellow);
    border-radius: 10px;
    background: var(--mix-yellow);
    color: var(--mix-ink);
    font-size: 14px;
    font-weight: 950;
    cursor: pointer;
}

.sa-mix-price-card > small {
    display: block;
    color: #aebfb4;
    font-size: 10px;
    line-height: 1.5;
}

.sa-mix-comparison,
.sa-mix-material-guide,
.sa-mix-process {
    padding: 86px 0;
}

.sa-mix-comparison {
    background: var(--mix-cream);
}

.sa-mix-section-heading {
    max-width: 800px;
    margin-bottom: 38px;
}

.sa-mix-comparison__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 17px;
}

.sa-mix-comparison__grid article {
    display: flex;
    min-height: 300px;
    padding: 27px;
    border: 1px solid var(--mix-line);
    border-radius: 21px;
    background: #fff;
    flex-direction: column;
}

.sa-mix-comparison__grid article.is-highlighted {
    border: 2px solid var(--mix-ink);
    background: var(--mix-ink);
    color: #fff;
    transform: translateY(-8px);
}

.sa-mix-comparison__grid article > span {
    align-self: flex-start;
    margin-bottom: 34px;
    padding: 6px 9px;
    border-radius: 999px;
    background: var(--mix-mint);
    color: var(--mix-green-dark);
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.sa-mix-comparison__grid .is-highlighted > span {
    background: var(--mix-yellow);
    color: var(--mix-ink);
}

.sa-mix-comparison__grid h3 {
    margin-bottom: 10px;
    color: var(--mix-ink);
    font-size: 24px;
    font-weight: 950;
    letter-spacing: -.025em;
}

.sa-mix-comparison__grid p {
    margin-bottom: 24px;
    color: var(--mix-muted);
    font-size: 15px;
    line-height: 1.6;
}

.sa-mix-comparison__grid .is-highlighted h3,
.sa-mix-comparison__grid .is-highlighted p {
    color: #fff;
}

.sa-mix-comparison__grid a,
.sa-mix-comparison__grid article > strong {
    margin-top: auto;
    color: var(--mix-green-dark);
    font-size: 13px;
    font-weight: 950;
}

.sa-mix-comparison__grid .is-highlighted > strong {
    color: var(--mix-yellow);
}

.sa-mix-material-guide {
    background: #fff;
}

.sa-mix-material-guide__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.sa-mix-material-guide__grid article {
    overflow: hidden;
    border: 1px solid var(--mix-line);
    border-radius: 17px;
    background: var(--mix-paper);
}

.sa-mix-material-guide__visual {
    height: 150px;
}

.sa-mix-material-guide__grid article > div {
    padding: 18px;
}

.sa-mix-material-guide__grid h3 {
    margin-bottom: 7px;
    color: var(--mix-ink);
    font-size: 18px;
    font-weight: 950;
}

.sa-mix-material-guide__grid p {
    margin-bottom: 0;
    color: var(--mix-muted);
    font-size: 13px;
    line-height: 1.55;
}

.sa-mix-process {
    background: var(--mix-ink);
    color: #fff;
}

.sa-mix-process .sa-mix-eyebrow {
    color: var(--mix-yellow);
}

.sa-mix-process .sa-mix-section-heading h2 {
    color: #fff;
}

.sa-mix-process ol {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sa-mix-process li {
    padding: 23px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 17px;
    background: rgba(255,255,255,.07);
}

.sa-mix-process li > span {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    margin-bottom: 34px;
    border-radius: 50%;
    background: var(--mix-yellow);
    color: var(--mix-ink);
    font-weight: 950;
}

.sa-mix-process h3 {
    margin-bottom: 9px;
    color: #fff;
    font-size: 18px;
    font-weight: 950;
    letter-spacing: -.02em;
}

.sa-mix-process p {
    margin-bottom: 0;
    color: #c7d3ca;
    font-size: 13px;
    line-height: 1.6;
}

/* Product-template parity: breadcrumb and FAQ match the recent custom pages. */
.sa-mix-page .sa-product-live__summary-breadcrumbs {
    margin: 0 0 12px !important;
    color: #129447 !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    line-height: 1.35 !important;
}

.sa-mix-page .sa-product-live__summary-breadcrumbs .woocommerce-breadcrumb {
    margin: 0 !important;
    color: #129447 !important;
}

.sa-mix-page .sa-product-live__summary-breadcrumbs a {
    color: #129447 !important;
    text-decoration: none !important;
}

.sa-mix-page .sa-product-live__faq.sa-hd-faq {
    padding: 76px 0 !important;
    background: #faf6ec !important;
}

.sa-mix-page .sa-product-live__faq .sa-hd-narrow {
    width: min(880px, calc(100% - 40px)) !important;
    margin-inline: auto !important;
}

.sa-mix-page .sa-product-live__faq .sa-hd-title {
    margin: 0 0 28px !important;
    color: #10291e !important;
    font-size: clamp(36px, 4.4vw, 58px) !important;
    font-weight: 950 !important;
    line-height: 1.06 !important;
    text-align: center !important;
}

.sa-mix-page .sa-product-live__faq .sa-hd-eyebrow {
    display: block !important;
    margin-bottom: 16px !important;
    color: #42904d !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    letter-spacing: .18em !important;
    text-transform: uppercase !important;
}

.sa-mix-page .sa-product-live__faq .sa-hd-faq__list {
    display: grid !important;
    gap: 12px !important;
    margin-top: 44px !important;
}

.sa-mix-page .sa-product-live__faq .sa-hd-faq__item {
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    border: 1px solid rgba(16, 41, 30, .16) !important;
    border-radius: 14px !important;
    background: #fff !important;
    box-shadow: 0 4px 12px rgba(16, 41, 29, .05) !important;
}

.sa-mix-page .sa-product-live__faq .sa-hd-faq__item summary {
    position: relative !important;
    padding: 20px 58px 20px 22px !important;
    border: 0 !important;
    background: transparent !important;
    color: #10291e !important;
    font-size: 17px !important;
    font-weight: 950 !important;
    line-height: 1.3 !important;
    cursor: pointer !important;
    list-style: none !important;
}

.sa-mix-page .sa-product-live__faq .sa-hd-faq__item summary::-webkit-details-marker {
    display: none !important;
}

.sa-mix-page .sa-product-live__faq .sa-hd-faq__item summary::after {
    content: "\2304" !important;
    position: absolute !important;
    top: 50% !important;
    right: 22px !important;
    color: #42904d !important;
    font-size: 30px !important;
    font-weight: 900 !important;
    transform: translateY(-58%) !important;
}

.sa-mix-page .sa-product-live__faq .sa-hd-faq__item[open] summary::after {
    transform: translateY(-42%) rotate(180deg) !important;
}

.sa-mix-page .sa-product-live__faq .sa-hd-faq__item p {
    margin: 0 !important;
    padding: 0 22px 22px !important;
    color: #43554a !important;
    font-size: 16px !important;
    line-height: 1.65 !important;
}

@media (max-width: 1100px) {
    .sa-mix-hero__grid {
        grid-template-columns: minmax(0, .9fr) minmax(390px, 1.1fr);
        gap: 38px;
    }

    .sa-mix-builder__layout {
        grid-template-columns: minmax(0, 1fr) 315px;
        gap: 24px;
    }

    .sa-mix-materials,
    .sa-mix-material-guide__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sa-mix-artwork {
        grid-template-columns: 30px minmax(122px, 1.3fr) repeat(3, minmax(68px, .7fr)) 36px;
        gap: 6px;
    }

    .sa-mix-field input {
        padding-inline: 6px;
    }

    .sa-mix-process ol {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .sa-mix-container {
        width: min(100% - 28px, 720px);
    }

    .sa-mix-hero {
        padding-bottom: 54px;
    }

    .sa-mix-hero__grid,
    .sa-mix-builder__layout {
        grid-template-columns: 1fr;
    }

    .sa-mix-gallery {
        max-width: 620px;
        margin-inline: auto;
    }

    .sa-mix-intro h1 {
        font-size: clamp(42px, 11vw, 64px);
    }

    .sa-mix-price-card {
        position: static;
        order: 2;
    }

    .sa-mix-artwork {
        grid-template-columns: 31px minmax(145px, 1.35fr) repeat(3, minmax(82px, .7fr)) 38px;
        gap: 8px;
    }

    .sa-mix-comparison__grid {
        grid-template-columns: 1fr;
    }

    .sa-mix-comparison__grid article,
    .sa-mix-comparison__grid article.is-highlighted {
        min-height: 0;
        transform: none;
    }
}

@media (max-width: 620px) {
    .sa-mix-hero,
    .sa-mix-builder,
    .sa-mix-comparison,
    .sa-mix-material-guide,
    .sa-mix-process {
        padding-top: 52px;
        padding-bottom: 52px;
    }

    .sa-mix-gallery__stage {
        border-radius: 20px 20px 58px 20px;
    }

    .sa-mix-gallery__thumbs button {
        width: 60px;
        height: 60px;
    }

    .sa-mix-intro h1 {
        margin-top: 8px;
        font-size: 42px;
    }

    .sa-mix-lead {
        font-size: 17px;
    }

    .sa-mix-benefits {
        gap: 7px;
        margin-bottom: 18px;
    }

    .sa-mix-benefits li {
        padding: 10px 12px 10px 40px;
    }

    .sa-mix-benefits li::before {
        top: 11px;
        left: 12px;
    }

    .sa-mix-benefits strong {
        font-size: 14px;
    }

    .sa-mix-benefits span {
        font-size: 12px;
        line-height: 1.3;
    }

    .sa-mix-step {
        padding: 18px 14px;
        border-radius: 17px;
    }

    .sa-mix-step__title {
        gap: 10px;
        margin-bottom: 17px;
    }

    .sa-mix-step__title > span {
        flex-basis: 32px;
        width: 32px;
        height: 32px;
    }

    .sa-mix-step__title h3 {
        font-size: 19px;
    }

    .sa-mix-materials {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .sa-mix-material {
        grid-template-columns: 50px minmax(0, 1fr);
        align-content: stretch;
        min-height: 66px;
        border-radius: 12px;
    }

    .sa-mix-material__visual {
        width: 50px;
        height: 100%;
        min-height: 62px;
    }

    .sa-mix-material__copy {
        align-content: center;
        min-width: 0;
        min-height: 0;
        padding: 8px 7px;
    }

    .sa-mix-material__copy strong {
        font-size: 12px;
        line-height: 1.15;
        overflow-wrap: anywhere;
    }

    .sa-mix-material__copy small {
        position: absolute;
        width: 1px;
        height: 1px;
        margin: -1px;
        padding: 0;
        overflow: hidden;
        border: 0;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
    }

    .sa-mix-material__check {
        top: 4px;
        right: auto;
        left: 28px;
        width: 20px;
        height: 20px;
        border-width: 1px;
        font-size: 10px;
    }

    .sa-mix-artwork-group {
        padding: 11px;
    }

    .sa-mix-artwork-group__rows {
        gap: 8px;
    }

    .sa-mix-artwork {
        position: relative;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px;
        padding: 34px 8px 9px;
        border: 1px solid var(--mix-line);
        border-radius: 11px;
        background: var(--mix-paper);
    }

    .sa-mix-artwork__number {
        position: absolute;
        top: 7px;
        left: 8px;
        width: 25px;
        height: 22px;
        border-radius: 7px;
    }

    .sa-mix-field--name {
        grid-column: 1 / -1;
    }

    .sa-mix-field > span {
        font-size: 9px;
    }

    .sa-mix-field input {
        min-height: 43px;
        padding: 8px 5px;
        font-size: 12px;
    }

    .sa-mix-field input[type="number"] {
        font-size: 14px;
    }

    .sa-mix-artwork__remove {
        position: absolute;
        top: 6px;
        right: 7px;
        width: 29px;
        height: 25px;
        border-radius: 7px;
        font-size: 19px;
        line-height: 1;
    }

    .sa-mix-add-artwork {
        width: 100%;
        min-height: 40px;
        margin-top: 9px;
        border: 1px dashed rgba(40, 107, 53, .4);
        border-radius: 9px;
    }

    .sa-mix-submit {
        align-items: flex-start;
        flex-direction: column;
    }

    .sa-mix-price-card {
        padding: 20px;
        border-radius: 18px;
    }

    .sa-mix-material-guide__grid {
        gap: 8px;
    }

    .sa-mix-material-guide__visual {
        height: 105px;
    }

    .sa-mix-material-guide__grid article > div {
        padding: 12px;
    }

    .sa-mix-material-guide__grid h3 {
        font-size: 15px;
    }

    .sa-mix-material-guide__grid p {
        font-size: 11px;
    }

    .sa-mix-process ol {
        grid-template-columns: 1fr;
    }

    .sa-mix-process li {
        display: grid;
        grid-template-columns: 36px 1fr;
        gap: 14px;
        padding: 18px;
    }

    .sa-mix-process li > span {
        margin-bottom: 0;
    }

    .sa-mix-page .sa-product-live__faq .sa-hd-narrow {
        width: calc(100% - 32px) !important;
    }

    .sa-mix-page .sa-product-live__faq .sa-hd-faq__item summary {
        padding: 18px 50px 18px 18px !important;
        font-size: 16px !important;
    }

    .sa-mix-page .sa-product-live__faq .sa-hd-faq__item p {
        padding: 0 18px 18px !important;
        font-size: 15px !important;
    }
}

@media (max-width: 390px) {
    .sa-mix-container {
        width: calc(100% - 22px);
    }

    .sa-mix-intro h1 {
        font-size: 38px;
    }

    .sa-mix-materials,
    .sa-mix-material-guide__grid {
        grid-template-columns: 1fr 1fr;
    }

    .sa-mix-material {
        grid-template-columns: 43px minmax(0, 1fr);
    }

    .sa-mix-material__visual {
        width: 43px;
    }

    .sa-mix-material__check {
        left: 23px;
    }

    .sa-mix-price-card dl > div {
        gap: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sa-mix-page *,
    .sa-mix-page *::before,
    .sa-mix-page *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
