:root {
    --sy-wide-content: 88.6458vw;
}

@media (min-width: 1025px) {
    .max.layout-padding:not(.footer),
    .sy-products-hero-inner,
    .sy-products-shell,
    .sy-product-detail-head,
    .sy-product-gallery,
    .sy-product-content-section,
    .sy-product-lower,
    .sy-product-related,
    .sy-video-hero-inner,
    .sy-video-shell {
        width: var(--sy-wide-content);
        max-width: none;
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
        padding-right: 0;
        box-sizing: border-box;
        float: none;
    }

    .header {
        gap: clamp(28px, 4vw, 80px);
    }

    .header .logo {
        flex: 0 0 auto;
    }

    .header .nav {
        display: flex;
        flex: 1 1 auto;
        justify-content: flex-end;
        align-items: stretch;
        gap: clamp(28px, 3vw, 58px);
        min-width: 0;
        margin-left: 0;
        padding: 0;
        white-space: nowrap;
    }

    .header .nav > li {
        position: relative;
        float: none;
        flex: 0 0 auto;
        margin-right: 0;
        list-style: none;
    }

    .header .nav > li > a {
        display: flex;
        align-items: center;
        height: 100%;
    }

    .header .nav .sub-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        z-index: 2200;
        display: flex;
        visibility: hidden;
        flex-direction: column;
        min-width: 150px;
        margin: 0;
        padding: 14px 0;
        list-style: none;
        background: rgba(20, 20, 20, .78);
        opacity: 0;
        transform: translate(-50%, 12px);
        transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
        backdrop-filter: blur(8px);
    }

    .header .nav > li:hover > .sub-menu {
        visibility: visible;
        opacity: 1;
        transform: translate(-50%, 0);
    }

    .header .nav .sub-menu li {
        float: none;
        height: auto;
        margin: 0;
        line-height: normal;
        list-style: none;
    }

    .header .nav .sub-menu a {
        display: block;
        padding: 10px 22px;
        color: #fff;
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
        text-shadow: none;
    }

    .header.fixed .nav .sub-menu {
        background: rgba(255, 255, 255, .96);
        box-shadow: 0 12px 34px rgba(0, 0, 0, .08);
    }

    .header.fixed .nav .sub-menu a {
        color: #191919;
    }

    body.single-product .header {
        position: fixed;
        top: 0;
        background: rgba(255, 255, 255, .96);
        box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
        backdrop-filter: blur(12px);
    }

    body.admin-bar.single-product .header {
        top: 32px;
    }

    body.single-product .header .logo img.white {
        opacity: 0;
    }

    body.single-product .header .logo img.gray {
        opacity: 1;
    }

    body.single-product .header .nav > li > a {
        color: #191919;
        text-shadow: none;
    }

    body.single-product .header .nav > li > a.link-line::after {
        background: #191919;
    }

    body.single-product .header .search a {
        background-image: url(../images/icon_top_search_gray.png);
    }

    .header .nav > li.sy-menu-product-item {
        position: relative;
    }

    .sy-product-mega {
        position: absolute;
        top: calc(100% - 1px);
        right: 50%;
        z-index: 2300;
        visibility: hidden;
        width: min(920px, calc(100vw - 72px));
        max-height: calc(100vh - 110px);
        padding-top: 12px;
        opacity: 0;
        overflow-y: auto;
        pointer-events: none;
        transform: translate(38%, 10px);
        transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
    }

    .sy-product-mega::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        height: 12px;
    }

    .header .nav > li.sy-menu-product-item:hover > .sy-product-mega,
    .header .nav > li.sy-menu-product-item:focus-within > .sy-product-mega {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: translate(38%, 0);
    }

    .sy-product-mega-panel {
        overflow: hidden;
        color: #191919;
        background: rgba(255, 255, 255, .96);
        border: 1px solid rgba(25, 25, 25, .08);
        border-radius: 2px;
        box-shadow: 0 22px 58px rgba(0, 0, 0, .14);
        backdrop-filter: blur(12px);
    }

    .sy-product-mega-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 58px;
        padding: 0 28px;
        border-bottom: 1px solid rgba(25, 25, 25, .08);
    }

    .sy-product-mega-head span {
        color: #9b7a5f;
        font-size: 13px;
        line-height: 1;
    }

    .sy-product-mega-head a {
        display: inline-flex !important;
        align-items: center;
        height: auto !important;
        padding: 0 !important;
        color: #191919 !important;
        font-size: 13px !important;
        line-height: 1.4 !important;
    }

    .sy-product-mega-head a::after {
        content: "";
        width: 28px;
        height: 1px;
        margin-left: 10px;
        background: #191919;
        opacity: .45;
    }

    .sy-product-mega-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1px;
        background: rgba(25, 25, 25, .06);
    }

    .sy-product-mega-group {
        min-width: 0;
        min-height: 148px;
        padding: 23px 26px 25px;
        background: rgba(255, 255, 255, .92);
        transition: background .22s ease;
    }

    .sy-product-mega-group:hover {
        background: #faf8f5;
    }

    .sy-product-mega-parent {
        display: inline-flex !important;
        align-items: center;
        height: auto !important;
        padding: 0 !important;
        color: #111 !important;
        font-size: 16px !important;
        line-height: 1.35 !important;
        text-align: left !important;
    }

    .sy-product-mega-parent::before {
        content: "";
        width: 18px;
        height: 1px;
        margin-right: 10px;
        background: #b18b68;
    }

    .sy-product-mega-children {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 18px;
        margin-top: 18px;
    }

    .sy-product-mega-children a {
        display: inline-flex !important;
        height: auto !important;
        padding: 0 !important;
        color: #626262 !important;
        font-size: 13px !important;
        line-height: 1.5 !important;
        text-align: left !important;
        transition: color .18s ease;
    }

    .sy-product-mega-children a:hover {
        color: #111 !important;
    }
}

.bar:not(.show) {
    transform: translate3d(0, -50%, 0) !important;
}

.bar:not(.show) ul {
    display: none;
}

.bar:not(.show) .ctrl {
    left: auto;
    right: 0;
}

.sy-home-brand-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(14px, 1.25vw, 24px);
    width: var(--sy-wide-content);
    margin: clamp(-24px, -1.4vw, -8px) auto clamp(72px, 6vw, 118px);
}

.home-brand > .sy-home-brand-list:not(.sy-home-video-list) {
    display: none;
}

.sy-home-banner-managed {
    position: relative;
    overflow: hidden;
    background: #111;
}

.sy-home-banner-managed .swiper-container,
.sy-home-banner-managed .swiper-wrapper,
.sy-home-banner-managed .swiper-slide,
.sy-home-banner-managed .box {
    height: 100vh;
    min-height: 640px;
}

.sy-home-banner-managed .sy-home-banner-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
}

.sy-home-banner-managed .sy-home-banner-media {
    position: relative;
    overflow: hidden;
}

.sy-home-banner-managed .slide-pic,
.sy-home-banner-managed video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sy-home-banner-managed video {
    background: #111;
}

.sy-home-banner-managed .home-banner-info {
    z-index: 3;
    pointer-events: none;
}

.sy-home-banner-managed .swiper-pagination {
    z-index: 4;
}

.sy-home-brand-card {
    width: auto;
    min-width: 0;
    overflow: hidden;
    background: #111;
}

.sy-home-video-card .sy-video-media {
    min-height: 360px;
}

.sy-home-video-card .sy-video-play {
    opacity: .92;
}

.sy-home-video-copy {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 3;
    color: #fff;
    text-align: left;
    pointer-events: none;
}

.sy-home-video-copy strong,
.sy-home-video-copy em {
    display: block;
}

.sy-home-video-copy strong {
    color: #fff;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 400;
}

.sy-home-video-copy em {
    margin-top: 7px;
    color: rgba(255,255,255,.78);
    font-size: 14px;
    line-height: 1.45;
    font-style: normal;
}

.sy-home-video-card .sy-video-media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(0,0,0,.58), rgba(0,0,0,.04) 58%);
    pointer-events: none;
}

.sy-home-video-card .sy-video-play,
.sy-home-video-card .sy-video-media em {
    z-index: 4;
}

.sy-home-brand-card a {
    position: relative;
    display: block;
    min-height: 360px;
    color: #fff;
}

.sy-home-brand-card img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    display: block;
    object-fit: cover;
    opacity: .82;
    transition: transform .5s ease, opacity .5s ease;
}

.sy-home-brand-card span {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
}

.sy-home-brand-card strong,
.sy-home-brand-card em {
    display: block;
    font-style: normal;
    letter-spacing: 0;
}

.sy-home-brand-card strong {
    font-size: clamp(20px, 1.5vw, 28px);
    line-height: 1.25;
    font-weight: 400;
}

.sy-home-brand-card em {
    margin-top: 9px;
    color: rgba(255, 255, 255, .74);
    font-size: 14px;
    line-height: 1.5;
}

.sy-home-brand-card:hover img {
    opacity: .96;
    transform: scale(1.045);
}

.sy-home-showcase {
    width: var(--sy-wide-content);
    margin: 0 auto;
    padding-top: clamp(36px, 4vw, 70px);
    padding-bottom: clamp(74px, 7vw, 128px);
}

.sy-home-section-title {
    max-width: 760px;
    margin: 0 auto clamp(34px, 4vw, 64px);
    text-align: center;
}

.sy-home-section-title p {
    margin: 0 0 12px;
    color: #8d7a67;
    font-size: 13px;
    line-height: 1;
}

.sy-home-section-title h2 {
    margin: 0;
    color: #111;
    font-size: clamp(30px, 2.65vw, 52px);
    line-height: 1.24;
    font-weight: 400;
    letter-spacing: 0;
}

.sy-home-section-title span {
    display: block;
    margin-top: 16px;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

.sy-home-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 1.6vw, 30px);
}

.sy-home-showcase-grid article {
    min-width: 0;
}

.sy-home-showcase-grid article.large {
    grid-column: span 2;
}

.sy-home-showcase-grid img {
    width: 100%;
    aspect-ratio: 16 / 10;
    display: block;
    object-fit: cover;
    background: #eee;
}

.sy-home-showcase-grid article.large img {
    aspect-ratio: 16 / 8.4;
}

.sy-home-showcase-grid h3 {
    margin: 14px 0 0;
    color: #222;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 400;
    text-align: center;
}

.sy-gcasa-position,
.sy-gcasa-system,
.sy-gcasa-series,
.sy-gcasa-craft {
    width: var(--sy-wide-content);
    margin: 0 auto;
}

.sy-gcasa-position.layout-padding,
.sy-gcasa-system.layout-padding,
.sy-gcasa-series.layout-padding,
.sy-gcasa-craft.layout-padding {
    padding-left: 0;
    padding-right: 0;
}

.sy-gcasa-position {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(460px, 1.12fr);
    gap: clamp(42px, 5vw, 96px);
    align-items: end;
    padding-top: clamp(64px, 6vw, 116px);
    padding-bottom: clamp(70px, 6vw, 118px);
    border-top: 1px solid rgba(20, 20, 20, .1);
}

.sy-gcasa-position-copy p,
.sy-gcasa-story p,
.sy-gcasa-case p {
    margin: 0 0 14px;
    color: #8d7a67;
    font-size: 13px;
    line-height: 1;
}

.sy-gcasa-position-copy h2,
.sy-gcasa-story h2,
.sy-gcasa-case h2 {
    margin: 0;
    color: #111;
    font-size: clamp(34px, 3.5vw, 68px);
    line-height: 1.18;
    font-weight: 400;
    letter-spacing: 0;
}

.sy-gcasa-position-copy span,
.sy-gcasa-story span,
.sy-gcasa-case span {
    display: block;
    margin-top: 24px;
    color: #555;
    font-size: 16px;
    line-height: 1.9;
}

.sy-gcasa-position-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.sy-gcasa-position-grid article {
    min-height: 190px;
    padding: clamp(22px, 2vw, 34px);
    background: #fff;
    border: 1px solid rgba(20, 20, 20, .08);
}

.sy-gcasa-position-grid strong {
    display: block;
    color: #111;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 400;
}

.sy-gcasa-position-grid span {
    display: block;
    margin-top: 18px;
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

.sy-gcasa-story {
    width: var(--sy-wide-content);
    margin: 0 auto;
}

.sy-gcasa-story article {
    display: grid;
    grid-template-columns: minmax(0, 1.14fr) minmax(340px, .86fr);
    gap: clamp(34px, 4.5vw, 82px);
    align-items: center;
    padding: clamp(58px, 6vw, 110px) 0;
    border-top: 1px solid rgba(20, 20, 20, .1);
}

.sy-gcasa-story article:nth-child(even) {
    grid-template-columns: minmax(340px, .86fr) minmax(0, 1.14fr);
}

.sy-gcasa-story article:nth-child(even) img {
    order: 2;
}

.sy-gcasa-story img {
    width: 100%;
    aspect-ratio: 16 / 10;
    display: block;
    object-fit: cover;
}

.sy-gcasa-system,
.sy-gcasa-series,
.sy-gcasa-craft {
    padding-top: clamp(66px, 6vw, 112px);
    padding-bottom: clamp(72px, 6vw, 118px);
    border-top: 1px solid rgba(20, 20, 20, .1);
}

.sy-gcasa-system .sy-home-section-title {
    max-width: none;
    margin-bottom: clamp(52px, 5vw, 96px);
}

.sy-gcasa-system .sy-home-section-title p {
    margin-bottom: 38px;
    color: #b18b68;
    font-size: clamp(17px, .95vw, 20px);
    font-weight: 600;
}

.sy-gcasa-system .sy-home-section-title h2 {
    font-size: clamp(20px, 1.04vw, 22px);
    line-height: 1.6;
    font-weight: 600;
}

.sy-gcasa-system .sy-home-section-title span {
    margin-top: 32px;
    color: #333;
    font-size: 14px;
    line-height: 2.35;
}

.sy-gcasa-system-grid {
    display: flex;
    gap: .625vw;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
}

.sy-gcasa-system-grid::-webkit-scrollbar {
    display: none;
}

.sy-gcasa-system-grid article,
.sy-gcasa-series-grid article,
.sy-gcasa-craft-grid article {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background: #111;
}

.sy-gcasa-system-grid img,
.sy-gcasa-series-grid img,
.sy-gcasa-craft-grid img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    opacity: .9;
    transition: transform .45s ease, opacity .45s ease;
}

.sy-gcasa-system-grid article:hover img,
.sy-gcasa-series-grid article:hover img,
.sy-gcasa-craft-grid article:hover img {
    opacity: 1;
    transform: scale(1.045);
}

.sy-gcasa-system-grid article {
    flex: 0 0 calc((100% - 1.875vw) / 4);
    aspect-ratio: 402 / 592;
    scroll-snap-align: start;
}

.sy-gcasa-system-grid h3 {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 20px;
    margin: 0;
    color: #fff;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 400;
}

.sy-gcasa-series-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(18px, 1.5vw, 28px);
}

.sy-gcasa-series-grid article {
    background: transparent;
}

.sy-gcasa-series-grid img {
    aspect-ratio: 705 / 438;
}

.sy-gcasa-series-grid h3 {
    margin: 13px 0 0;
    color: #222;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 400;
    text-align: center;
}

.sy-gcasa-craft-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1px;
    background: rgba(20, 20, 20, .12);
}

.sy-gcasa-craft-grid article {
    aspect-ratio: 337 / 455;
}

.sy-gcasa-craft-grid article::after,
.sy-gcasa-system-grid article::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.58), rgba(0,0,0,.04) 58%);
    pointer-events: none;
}

.sy-gcasa-craft-grid div {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 22px;
    z-index: 2;
    color: #fff;
}

.sy-gcasa-craft-grid strong,
.sy-gcasa-craft-grid span {
    display: block;
}

.sy-gcasa-craft-grid strong {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 400;
}

.sy-gcasa-craft-grid span {
    margin-top: 7px;
    color: rgba(255, 255, 255, .72);
    font-size: 11px;
    line-height: 1.35;
}

.sy-gcasa-case {
    position: relative;
    min-height: clamp(520px, 46vw, 780px);
    color: #fff;
    overflow: hidden;
}

.sy-gcasa-case > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sy-gcasa-case::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.58), rgba(0,0,0,.12) 58%, rgba(0,0,0,.42));
}

.sy-gcasa-case > div {
    position: relative;
    z-index: 2;
    width: var(--sy-wide-content);
    margin: 0 auto;
    padding-top: clamp(120px, 13vw, 230px);
}

.sy-gcasa-case h2,
.sy-gcasa-case span,
.sy-gcasa-case p {
    color: #fff;
}

.sy-gcasa-case span {
    max-width: 620px;
    color: rgba(255,255,255,.76);
}

.sy-gcasa-case a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    min-height: 42px;
    margin-top: 32px;
    padding: 0 22px;
    color: #111;
    background: #fff;
}

.sy-editable-page {
    padding-top: clamp(52px, 4.8vw, 86px);
    padding-bottom: clamp(82px, 7vw, 132px);
}

.sy-editable-page > section {
    width: 100%;
    clear: both;
    overflow: visible;
    box-sizing: border-box;
}

.sy-page-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: min(920px, 100%);
    margin: 0 auto;
    text-align: center;
    padding-bottom: clamp(42px, 3.6vw, 70px);
    border-bottom: 1px solid rgba(20, 20, 20, .1);
}

.sy-page-intro > p {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 18px;
    padding: 6px 16px;
    color: #9b7a5f;
    font-size: 13px;
    line-height: 1.4;
    background: #faf8f5;
    border: 1px solid rgba(177, 139, 104, .24);
    border-radius: 999px;
}

.sy-page-process > div p,
.sy-page-cta p {
    margin: 0;
    color: #b18b68;
    font-size: 13px;
    line-height: 1.4;
    text-transform: uppercase;
}

.sy-page-intro h1 {
    max-width: 820px;
    margin: 0;
    color: #111;
    font-size: clamp(34px, 3.05vw, 58px);
    line-height: 1.18;
    font-weight: 400;
    letter-spacing: 0;
}

.sy-page-process h2,
.sy-page-cta h2 {
    margin: 0;
    color: #111;
    font-size: clamp(36px, 3.8vw, 72px);
    line-height: 1.16;
    font-weight: 400;
    letter-spacing: 0;
}

.sy-page-intro article {
    max-width: 760px;
    margin-top: 24px;
    color: #444;
    font-size: clamp(16px, .98vw, 19px);
    line-height: 2;
}

.sy-page-intro article p {
    margin: 0 0 12px;
}

.sy-page-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 1.35vw, 26px);
    padding: clamp(44px, 4.1vw, 78px) 0 clamp(54px, 5.8vw, 104px);
}

.sy-page-feature-grid article {
    min-height: 238px;
    padding: clamp(28px, 2.2vw, 42px);
    background: #f7f5f1;
    border: 1px solid rgba(20, 20, 20, .06);
}

.sy-page-feature-grid span {
    display: block;
    margin-bottom: 34px;
    color: #b18b68;
    font-size: 13px;
}

.sy-page-feature-grid h2 {
    margin: 0;
    color: #111;
    font-size: clamp(22px, 1.55vw, 30px);
    line-height: 1.35;
    font-weight: 400;
}

.sy-page-feature-grid p {
    margin: 18px 0 0;
    color: #555;
    font-size: 15px;
    line-height: 1.85;
}

.sy-page-section {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
    gap: clamp(38px, 5vw, 96px);
    align-items: center;
    padding: clamp(58px, 6vw, 112px) 0;
    border-top: 1px solid rgba(20, 20, 20, .1);
}

.sy-page-section:nth-of-type(even) {
    grid-template-columns: minmax(360px, .92fr) minmax(0, 1.08fr);
}

.sy-page-section:nth-of-type(even) .thumb {
    order: 2;
}

.sy-page-section .thumb {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.sy-page-section .thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.sy-page-section .info {
    float: none;
    width: auto;
}

.sy-page-section h2 {
    margin: 0;
    color: #111;
    font-size: clamp(30px, 2.8vw, 54px);
    line-height: 1.25;
    font-weight: 400;
}

.sy-page-section .info p {
    margin: 24px 0 0;
    color: #555;
    font-size: 16px;
    line-height: 1.95;
}

.sy-page-process {
    display: grid;
    grid-template-columns: minmax(260px, .32fr) minmax(0, .68fr);
    gap: clamp(42px, 6vw, 118px);
    padding: clamp(60px, 6vw, 112px) 0;
    border-top: 1px solid rgba(20, 20, 20, .1);
}

.sy-page-process h2 {
    margin-top: 18px;
    font-size: clamp(34px, 3.2vw, 62px);
}

.sy-page-process ol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin: 0;
    padding: 0;
    list-style: none;
    background: rgba(20, 20, 20, .1);
}

.sy-page-process li {
    min-height: 176px;
    padding: clamp(24px, 2vw, 38px);
    background: #fff;
}

.sy-page-process li span {
    display: block;
    color: #b18b68;
    font-size: 13px;
    margin-bottom: 22px;
}

.sy-page-process li strong {
    display: block;
    color: #111;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 400;
}

.sy-page-process li p {
    margin: 14px 0 0;
    color: #555;
    font-size: 14px;
    line-height: 1.8;
}

.sy-page-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: clamp(34px, 4vw, 70px);
    color: #fff;
    background: #191816;
}

.sy-page-cta h2 {
    margin-top: 12px;
    color: #fff;
    font-size: clamp(30px, 2.8vw, 52px);
}

.sy-page-cta .btn-more {
    flex: 0 0 auto;
    min-width: 154px;
    margin: 0;
    color: #111;
    background: #fff;
    border-color: #fff;
}

.sy-video-page {
    background: #f7f7f5;
    color: #202020;
}

.sy-video-hero {
    min-height: 460px;
    padding-top: 120px;
    background: linear-gradient(rgba(0,0,0,.42), rgba(0,0,0,.28)), url("https://www.macio.com.cn/Uploads/Single/202410/6711b9c10f63f.jpg") center/cover no-repeat;
    color: #fff;
}

.sy-video-hero-inner {
    margin: 0 auto;
    padding-top: 140px;
}

.sy-video-hero p {
    margin: 0 0 12px;
    color: #d5b596;
    font-size: 18px;
    line-height: 1.2;
}

.sy-video-hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(44px, 4.2vw, 78px);
    line-height: 1.15;
    font-weight: 400;
}

.sy-video-hero article {
    max-width: 680px;
    margin-top: 22px;
    color: rgba(255,255,255,.82);
    font-size: 16px;
    line-height: 1.9;
}

.sy-video-shell {
    margin: 0 auto;
    padding-top: clamp(62px, 5vw, 96px);
    padding-bottom: clamp(86px, 7vw, 132px);
}

.sy-video-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(24px, 2vw, 38px) clamp(18px, 1.45vw, 28px);
}

.sy-video-card {
    min-width: 0;
    background: #fff;
    border: 1px solid rgba(20, 20, 20, .08);
}

.sy-video-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    padding: 0;
    border: 0;
    background: #111;
    cursor: pointer;
}

.sy-video-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .45s ease, opacity .45s ease;
}

.sy-video-card:hover .sy-video-media img {
    opacity: .9;
    transform: scale(1.04);
}

.sy-video-media:disabled {
    cursor: default;
}

.sy-video-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 24px;
    color: rgba(255,255,255,.76);
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
}

.sy-video-play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 50%;
    background: rgba(0,0,0,.24);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.sy-video-play::after {
    content: "";
    position: absolute;
    left: 22px;
    top: 17px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
}

.sy-video-media em {
    position: absolute;
    right: 12px;
    bottom: 10px;
    padding: 4px 8px;
    color: #fff;
    font-size: 12px;
    font-style: normal;
    line-height: 1;
    background: rgba(0,0,0,.52);
}

.sy-video-modal-open,
.sy-video-modal-open body {
    overflow: hidden;
}

.sy-video-modal {
    position: fixed;
    inset: 0;
    z-index: 1000000;
    display: flex;
    visibility: hidden;
    align-items: center;
    justify-content: center;
    padding: clamp(18px, 4vw, 72px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .24s ease, visibility .24s ease;
}

.sy-video-modal.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.sy-video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .78);
    backdrop-filter: blur(5px);
}

.sy-video-modal-dialog {
    position: relative;
    z-index: 2;
    width: min(1180px, 92vw);
    color: #fff;
}

.sy-video-modal-player {
    width: 100%;
    max-height: min(72vh, 720px);
    display: block;
    background: #000;
    box-shadow: 0 28px 80px rgba(0,0,0,.36);
}

.sy-video-modal-close {
    position: absolute;
    right: -54px;
    top: -6px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.46);
    border-radius: 50%;
    background: rgba(0,0,0,.24);
    cursor: pointer;
}

.sy-video-modal-close::before,
.sy-video-modal-close::after {
    content: "";
    position: absolute;
    left: 12px;
    top: 20px;
    width: 18px;
    height: 1px;
    background: #fff;
}

.sy-video-modal-close::before {
    transform: rotate(45deg);
}

.sy-video-modal-close::after {
    transform: rotate(-45deg);
}

.sy-video-modal-title {
    margin: 16px 0 0;
    color: rgba(255,255,255,.82);
    font-size: 16px;
    line-height: 1.6;
}

.sy-video-body {
    padding: 22px 22px 26px;
}

.sy-video-body p {
    margin: 0 0 10px;
    color: #b18b68;
    font-size: 13px;
    line-height: 1.35;
}

.sy-video-body h2 {
    margin: 0;
    color: #111;
    font-size: 20px;
    line-height: 1.45;
    font-weight: 400;
}

.sy-video-body article {
    display: -webkit-box;
    margin-top: 12px;
    overflow: hidden;
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.navigation.pagination {
    width: 100%;
    margin-top: clamp(54px, 5vw, 86px);
    text-align: center;
}

.navigation.pagination .nav-links {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.navigation.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    color: #333;
    background: #fff;
    border: 1px solid rgba(20,20,20,.12);
}

.navigation.pagination .page-numbers.current,
.navigation.pagination .page-numbers:hover {
    color: #fff;
    background: #202020;
    border-color: #202020;
}

.footer {
    clear: both;
    min-height: 0;
    padding-top: clamp(36px, 3.6vw, 64px);
    padding-bottom: clamp(26px, 2.4vw, 40px);
    background: #e8e8e8;
    color: #0d0d0d;
    overflow: visible;
}

.footer .ft-top,
.footer .ft-logo,
.footer .ft-top-info,
.footer .ft-nav,
.footer .ft-nav dl,
.footer .ft-nav dl dt,
.footer .ft-nav dl dd,
.footer .ft-contact,
.footer .ft-service,
.footer .ft-middle,
.footer .ft-sns,
.footer .ft-sns ul,
.footer .ft-sns ul li,
.footer .copyright {
    float: none;
    height: auto;
    overflow: visible;
    box-sizing: border-box;
}

.footer .ft-top {
    width: 100%;
    margin: 0;
}

.footer .ft-logo {
    display: flex;
    align-items: center;
    min-height: 44px;
}

.footer .ft-logo img {
    width: auto;
    max-width: min(100%, 340px);
    height: clamp(36px, 3.2vw, 63px);
    object-fit: contain;
}

.footer .ft-top-info {
    display: grid;
    grid-template-columns: minmax(280px, .9fr) minmax(420px, 1.25fr) minmax(190px, .55fr);
    align-items: flex-start;
    gap: clamp(34px, 4.8vw, 84px);
    margin: clamp(28px, 3vw, 48px) 0 0;
}

.footer .ft-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(138px, 1fr));
    gap: clamp(20px, 2.6vw, 46px);
    width: 100%;
}

.footer .ft-nav dl {
    width: auto;
    min-width: 0;
    min-height: 0;
    margin: 0;
    padding: 0 0 0 clamp(14px, 1.1vw, 22px);
    border-left: 1px solid rgba(13, 13, 13, .28);
}

.footer .ft-nav dl dt,
.footer .ft-nav dl dt a {
    margin: 0 0 12px;
    color: #0d0d0d;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
}

.footer .ft-nav dl dd {
    margin: 0;
}

.footer .ft-nav dl dd + dd {
    margin-top: 7px;
}

.footer .ft-nav dl dd,
.footer .ft-nav dl dd a {
    color: #333;
    font-size: 13px;
    line-height: 1.45;
}

.footer .ft-nav a,
.footer .copyright a {
    transition: color .2s ease;
}

.footer .ft-nav a:hover,
.footer .copyright a:hover {
    color: #000;
}

.footer .ft-contact {
    min-width: 178px;
    margin: 0;
    text-align: left;
}

.footer .ft-service {
    max-width: 620px;
    padding: clamp(18px, 1.7vw, 28px);
    background: rgba(255, 255, 255, .36);
    border: 1px solid rgba(13, 13, 13, .08);
}

.footer .ft-service-kicker {
    margin: 0 0 9px;
    color: #666;
    font-size: 12px;
    line-height: 1;
}

.footer .ft-service h3 {
    margin: 0;
    color: #111;
    font-size: clamp(22px, 1.8vw, 30px);
    line-height: 1.25;
    font-weight: 700;
}

.footer .ft-service p:not(.ft-service-kicker) {
    margin: 13px 0 0;
    color: #444;
    font-size: 14px;
    line-height: 1.8;
}

.footer .ft-service ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.footer .ft-service li {
    min-width: 0;
    padding: 10px 13px;
    background: rgba(255, 255, 255, .48);
    border-left: 2px solid rgba(13, 13, 13, .48);
}

.footer .ft-service strong {
    display: block;
    color: #111;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
}

.footer .ft-service span {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 12px;
    line-height: 1.45;
}

.footer .ft-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.footer .ft-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 108px;
    min-height: 38px;
    padding: 0 18px;
    color: #fff;
    font-size: 13px;
    line-height: 1;
    background: #151515;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.footer .ft-actions a + a {
    color: #151515;
    background: transparent;
    border: 1px solid rgba(13, 13, 13, .36);
}

.footer .ft-actions a:hover {
    color: #fff;
    background: #555;
    border-color: #555;
}

.footer .ft-contact h3 {
    margin: 0;
    color: #444;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 400;
}

.footer .ft-contact h2 {
    margin: 8px 0 18px;
    color: #0d0d0d;
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
}

.footer .ft-contact h2:last-child {
    margin-bottom: 0;
}

.footer .ft-middle {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    margin: clamp(34px, 3.8vw, 58px) 0 0;
    padding: 0 0 clamp(16px, 1.4vw, 24px);
    border-bottom: 1px solid rgba(126, 126, 126, .7);
}

.footer .ft-sns ul {
    display: flex;
    flex-wrap: wrap;
    gap: 18px clamp(24px, 2.2vw, 42px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer .ft-sns ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    color: #333;
    font-size: 12px;
    line-height: 1.25;
}

.footer .ft-sns ul li a img {
    width: 42px;
    height: 42px;
    margin: 0 0 8px;
    object-fit: cover;
}

.footer .ft-sns ul li .qrcode {
    width: 120px;
    margin-left: -60px;
    padding: 6px;
    top: -136px;
    border-radius: 5px;
}

.footer .copyright {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    align-items: center;
    margin: 14px 0 0;
    color: #666;
    font-size: 12px;
    line-height: 1.6;
}

.footer .copyright a {
    color: #666;
}

.sy-phone-field {
    display: flex;
    align-items: stretch;
    gap: 10px;
}

.sy-phone-field .sy-country-code {
    flex: 0 0 148px;
    min-width: 0;
}

.sy-phone-field input[type="tel"] {
    flex: 1 1 auto;
    min-width: 0;
}

.free-design-form .info select {
    width: 100%;
    height: 1.5625vw;
    float: left;
    background: none;
    border: 0;
    border-bottom: 1px solid #a4a6a6;
    color: #0d0d0d;
    font-size: 0.8854vw;
    line-height: 1.5625vw;
    border-radius: 0;
}

.free-design-form .info .sy-phone-field {
    float: left;
}

.free-design-form .info .sy-phone-field .sy-country-code {
    height: 1.5625vw;
}

.free-design-form .info .sy-phone-field input[type="tel"] {
    width: auto;
}

.sy-product-lead .sy-phone-field {
    width: 100%;
}

.sy-product-lead .sy-phone-field .sy-country-code {
    height: 48px;
}

@media (max-width: 1024px) {
    .sy-home-banner-managed .swiper-container,
    .sy-home-banner-managed .swiper-wrapper,
    .sy-home-banner-managed .swiper-slide,
    .sy-home-banner-managed .box {
        height: 86vh;
        min-height: 560px;
    }

    .footer {
        padding-top: 42px;
        padding-bottom: 34px;
    }

    .footer .ft-top {
        display: block;
    }

    .footer .ft-logo {
        justify-content: center;
        min-height: 0;
    }

    .footer .ft-logo img,
    .footer .ft-logo img.lg {
        display: block !important;
        width: min(78vw, 420px);
        max-width: 100%;
        height: auto;
        margin: 0;
    }

    .footer .ft-top-info {
        display: block !important;
        margin-top: 28px;
    }

    .footer .ft-nav,
    .footer .ft-contact {
        display: none;
    }

    .footer .ft-service {
        max-width: none;
        padding: 22px 18px;
    }

    .sy-home-brand-list,
    .sy-home-showcase {
        width: min(100% - 32px, 720px);
    }

    .sy-home-brand-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-bottom: 54px;
    }

    .sy-home-brand-card a,
    .sy-home-video-card .sy-video-media,
    .sy-home-brand-card img {
        min-height: 260px;
    }

    .sy-home-showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sy-home-showcase-grid article.large {
        grid-column: span 2;
    }

    .sy-gcasa-position,
    .sy-gcasa-story article,
    .sy-gcasa-story article:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .sy-gcasa-story article:nth-child(even) img {
        order: 0;
    }

    .sy-gcasa-position,
    .sy-gcasa-story,
    .sy-gcasa-system,
    .sy-gcasa-series,
    .sy-gcasa-craft {
        width: min(100% - 32px, 720px);
    }

    .sy-gcasa-position-grid,
    .sy-gcasa-system-grid,
    .sy-gcasa-series-grid,
    .sy-gcasa-craft-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sy-gcasa-system-grid {
        gap: 14px;
        overflow: visible;
        scroll-snap-type: none;
    }

    .sy-gcasa-system-grid article {
        flex: auto;
    }

    .sy-gcasa-case > div {
        width: min(100% - 40px, 720px);
        padding-top: 120px;
    }

    .sy-page-intro,
    .sy-page-section,
    .sy-page-section:nth-of-type(even),
    .sy-page-process {
        grid-template-columns: 1fr;
    }

    .sy-page-section:nth-of-type(even) .thumb {
        order: 0;
    }

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

    .sy-page-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .sy-video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer .ft-middle {
        justify-content: center;
        margin-top: 42px;
        padding-bottom: 26px;
        border-bottom: 0;
    }

    .footer .ft-sns ul {
        justify-content: center;
        gap: 14px;
    }

    .footer .ft-sns ul li span {
        display: none;
    }

    .footer .ft-sns ul li a img {
        width: 42px;
        height: 42px;
        margin-bottom: 0;
    }

    .footer .ft-sns ul li .qrcode {
        width: 180px;
        margin-left: -90px;
        padding: 6px;
        top: -206px;
    }

    .footer .ft-info {
        display: flex;
        height: auto;
        min-height: 82px;
        border-top: 1px solid #7e7e7e;
        border-bottom: 1px solid #7e7e7e;
    }

    .footer .fti-item {
        display: flex;
        flex: 1 1 0;
        width: auto;
        height: auto;
        min-width: 0;
        padding: 14px 8px;
        float: none;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        border: 0;
    }

    .footer .fti-item:nth-child(2) {
        border-left: 1px solid #7e7e7e;
        border-right: 1px solid #7e7e7e;
    }

    .footer .fti-item h3 {
        margin: 0 0 5px;
        font-size: 12px;
        line-height: 1.25;
        text-align: center;
    }

    .footer .fti-item h2 {
        margin: 0;
        font-size: 15px;
        line-height: 1.2;
        text-align: center;
        word-break: keep-all;
    }

    .footer .copyright,
    .footer .copyright.lg {
        display: flex !important;
        justify-content: center;
        gap: 4px 10px;
        margin-top: 22px;
        font-size: 12px;
        line-height: 1.6;
        text-align: center;
    }
}

@media (max-width: 520px) {
    .sy-phone-field {
        gap: 8px;
    }

    .sy-phone-field .sy-country-code {
        flex-basis: 118px;
    }

    .free-design-form .info select,
    .free-design-form .info .sy-phone-field .sy-country-code {
        height: 8vw;
        font-size: 3.2vw;
        line-height: 8vw;
    }

    .footer .ft-actions a {
        flex: 1 1 0;
        min-width: 0;
    }

    .sy-home-brand-list,
    .sy-home-showcase-grid {
        grid-template-columns: 1fr;
    }

    .sy-home-showcase-grid article.large {
        grid-column: auto;
    }

    .sy-home-brand-card a,
    .sy-home-video-card .sy-video-media,
    .sy-home-brand-card img {
        min-height: 230px;
    }

    .sy-gcasa-position-grid,
    .sy-gcasa-system-grid,
    .sy-gcasa-series-grid,
    .sy-gcasa-craft-grid {
        grid-template-columns: 1fr;
    }

    .sy-gcasa-position-grid article {
        min-height: 0;
    }

    .sy-gcasa-system-grid article,
    .sy-gcasa-craft-grid article {
        aspect-ratio: 16 / 10;
    }

    .sy-page-feature-grid,
    .sy-page-process ol {
        grid-template-columns: 1fr;
    }

    .sy-page-feature-grid article,
    .sy-page-process li {
        min-height: 0;
    }

    .sy-page-section .thumb {
        aspect-ratio: 16 / 11;
    }

    .sy-page-cta {
        padding: 28px 22px;
    }

    .sy-video-hero {
        min-height: 360px;
        padding-top: 82px;
    }

    .sy-video-hero-inner {
        padding-top: 92px;
    }

    .sy-video-grid {
        grid-template-columns: 1fr;
    }

    .navigation.pagination .nav-links {
        gap: 6px;
    }

    .navigation.pagination .page-numbers {
        min-width: 38px;
        height: 38px;
        padding: 0 11px;
    }

    .sy-video-modal {
        align-items: center;
        padding: 18px;
    }

    .sy-video-modal-dialog {
        width: 100%;
    }

    .sy-video-modal-close {
        right: 0;
        top: -54px;
    }

    .sy-video-modal-player {
        max-height: 68vh;
    }

    .footer .ft-logo img {
        width: min(90vw, 360px);
    }

    .footer .fti-item {
        padding: 12px 4px;
    }

    .footer .fti-item h3 {
        font-size: 11px;
    }

    .footer .fti-item h2 {
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .footer .ft-service ul {
        grid-template-columns: 1fr;
    }
}
.sy-home-video-card .sy-video-media > .sy-video-play {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

@media (min-width: 1025px) {
    .sy-product-detail .sy-product-detail-head,
    .sy-product-detail .sy-product-gallery,
    .sy-product-detail .sy-product-content-section,
    .sy-product-detail .sy-product-lower,
    .sy-product-detail .sy-product-related,
    .sy-archive-page .sy-archive-hero-inner,
    .sy-archive-page .sy-archive-list,
    .sy-products-page .sy-products-hero-inner,
    .sy-video-page .sy-video-hero-inner {
        width: auto;
        max-width: 1180px;
        padding-left: 0;
        padding-right: 0;
    }

    .sy-product-detail .sy-product-detail-intro {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
        gap: 48px;
    }

    .sy-product-detail .sy-product-lower {
        grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
        gap: 28px;
    }
}

.sy-product-content-section {
    padding-top: clamp(12px, 1.4vw, 24px);
    padding-bottom: clamp(58px, 5vw, 92px);
}

.sy-product-section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 920px;
    margin: 0 auto 22px;
    padding-bottom: 18px;
    text-align: center;
    border-bottom: 1px solid rgba(25, 25, 25, .1);
}

.sy-product-section-title p {
    margin: 0;
    color: #b18b68;
    font-size: 12px;
    line-height: 1;
    text-transform: uppercase;
}

.sy-product-section-title h2 {
    margin: 0;
    color: #111;
    font-size: clamp(24px, 1.8vw, 34px);
    line-height: 1.25;
    font-weight: 400;
}

.sy-product-content {
    max-width: none;
    margin: 0 auto;
    padding: clamp(30px, 3vw, 58px);
    color: #333;
    text-align: left;
    background: #fff;
    border: 1px solid rgba(32, 32, 32, .08);
    box-shadow: 0 18px 46px rgba(31, 30, 27, .05);
}

.sy-product-content > *:first-child {
    margin-top: 0;
}

.sy-product-content > *:last-child {
    margin-bottom: 0;
}

.sy-product-content p {
    margin: 0 0 18px;
    color: #444;
    font-size: 16px;
    line-height: 2;
}

.sy-product-content h2,
.sy-product-content h3 {
    margin: 34px 0 16px;
    color: #111;
    font-weight: 400;
    line-height: 1.35;
}

.sy-product-content h2 {
    font-size: clamp(24px, 1.8vw, 34px);
}

.sy-product-content h3 {
    font-size: clamp(20px, 1.35vw, 26px);
}

.sy-product-content ul,
.sy-product-content ol {
    margin: 0 0 22px 20px;
    color: #444;
    font-size: 15px;
    line-height: 1.9;
}

.sy-product-content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 28px auto;
}

.sy-product-content .wp-caption {
    max-width: 100%;
}

.sy-product-gallery-stage figure {
    width: 100%;
    height: clamp(420px, 31vw, 620px);
    max-height: none;
    aspect-ratio: auto;
    background: #f1efeb;
}

.sy-product-gallery-stage img {
    object-fit: cover;
    object-position: center;
}

.sy-product-lower.has-product-content {
    padding-bottom: clamp(40px, 4vw, 72px);
}

.sy-product-related {
    padding-top: clamp(8px, 1vw, 18px);
    padding-bottom: clamp(78px, 7vw, 128px);
}

.sy-product-related .sy-product-section-title {
    margin-bottom: 30px;
}

.sy-product-related-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(16px, 1.35vw, 24px);
}

.sy-product-related-grid .sy-product-card {
    min-width: 0;
}

.sy-product-related-grid .sy-product-card-image {
    aspect-ratio: 4 / 3;
}

.sy-product-related-grid .sy-product-card-body {
    min-height: 188px;
}

@media (max-width: 640px) {
    .sy-product-gallery-stage figure {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .sy-product-related-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .sy-product-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

body.page-template-page-macioplus .sy-editable-page,
body.page-template-page-maciocasa .sy-editable-page,
body.page-template-page-magoe .sy-editable-page,
body.page-template-page-quality-customization .sy-editable-page {
    padding-top: clamp(52px, 4.8vw, 86px);
}

body.page-template-page-macioplus .sy-page-intro,
body.page-template-page-maciocasa .sy-page-intro,
body.page-template-page-magoe .sy-page-intro,
body.page-template-page-quality-customization .sy-page-intro {
    display: flex !important;
    grid-template-columns: none !important;
    flex-direction: column;
    align-items: center;
    max-width: min(920px, 100%);
    margin-right: auto;
    margin-left: auto;
    padding-top: clamp(48px, 4.5vw, 86px);
    padding-bottom: clamp(34px, 2.8vw, 54px);
    text-align: center;
}

body.page-template-page-macioplus .sy-page-intro > p,
body.page-template-page-maciocasa .sy-page-intro > p,
body.page-template-page-magoe .sy-page-intro > p,
body.page-template-page-quality-customization .sy-page-intro > p {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 14px;
    padding: 6px 16px;
    color: #9b7a5f;
    font-size: 13px;
    line-height: 1.4;
    background: #faf8f5;
    border: 1px solid rgba(177, 139, 104, .24);
    border-radius: 999px;
}

body.page-template-page-macioplus .sy-page-intro h1,
body.page-template-page-maciocasa .sy-page-intro h1,
body.page-template-page-magoe .sy-page-intro h1,
body.page-template-page-quality-customization .sy-page-intro h1 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(34px, 3.05vw, 58px);
    line-height: 1.18;
    text-align: center;
}

body.page-template-page-macioplus .sy-page-feature-grid,
body.page-template-page-maciocasa .sy-page-feature-grid,
body.page-template-page-magoe .sy-page-feature-grid,
body.page-template-page-quality-customization .sy-page-feature-grid {
    padding-top: clamp(34px, 3.2vw, 62px);
}

body.page-template-page-about .sy-editable-page,
body.page-template-page-intelligent-manufacturing .sy-editable-page,
body.page-template-page-quality-customization .sy-editable-page,
body.page-template-page-joinus .sy-editable-page {
    padding-top: clamp(72px, 6.2vw, 112px);
}

body.page-template-page-about .sy-page-intro,
body.page-template-page-intelligent-manufacturing .sy-page-intro,
body.page-template-page-quality-customization .sy-page-intro,
body.page-template-page-joinus .sy-page-intro {
    padding-top: clamp(58px, 5vw, 96px);
    padding-bottom: clamp(46px, 3.8vw, 72px);
}

body.page-template-page-about .sy-page-intro > p,
body.page-template-page-intelligent-manufacturing .sy-page-intro > p,
body.page-template-page-quality-customization .sy-page-intro > p,
body.page-template-page-joinus .sy-page-intro > p {
    margin-bottom: 16px;
}

body.page-template-page-about .sy-page-intro article,
body.page-template-page-intelligent-manufacturing .sy-page-intro article,
body.page-template-page-quality-customization .sy-page-intro article,
body.page-template-page-joinus .sy-page-intro article {
    margin-top: 18px;
}

body.page-template-page-about .sy-page-feature-grid,
body.page-template-page-intelligent-manufacturing .sy-page-feature-grid,
body.page-template-page-quality-customization .sy-page-feature-grid,
body.page-template-page-joinus .sy-page-feature-grid {
    padding-top: clamp(50px, 4.5vw, 86px);
}

@media (max-width: 640px) {
    body.page-template-page-macioplus .sy-page-intro,
    body.page-template-page-maciocasa .sy-page-intro,
    body.page-template-page-magoe .sy-page-intro,
    body.page-template-page-quality-customization .sy-page-intro {
        padding-top: 34px;
        padding-bottom: 30px;
    }

    body.page-template-page-macioplus .sy-page-feature-grid,
    body.page-template-page-maciocasa .sy-page-feature-grid,
    body.page-template-page-magoe .sy-page-feature-grid,
    body.page-template-page-quality-customization .sy-page-feature-grid {
        padding-top: 30px;
    }

    body.page-template-page-about .sy-editable-page,
    body.page-template-page-intelligent-manufacturing .sy-editable-page,
    body.page-template-page-quality-customization .sy-editable-page,
    body.page-template-page-joinus .sy-editable-page {
        padding-top: 42px;
    }

    body.page-template-page-about .sy-page-intro,
    body.page-template-page-intelligent-manufacturing .sy-page-intro,
    body.page-template-page-quality-customization .sy-page-intro,
    body.page-template-page-joinus .sy-page-intro {
        padding-top: 36px;
    }

    body.page-template-page-about .sy-page-feature-grid,
    body.page-template-page-intelligent-manufacturing .sy-page-feature-grid,
    body.page-template-page-quality-customization .sy-page-feature-grid,
    body.page-template-page-joinus .sy-page-feature-grid {
        padding-top: 34px;
    }
    
    
    
    
    
    
    .header.fixed {
    top: 0;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    backdrop-filter: blur(12px);
}

.header.fixed .nav > li > a {
    color: #191919;
    opacity: 1;
}

.header.fixed .nav > li > a.link-line::after {
    background: #191919;
}

.header.fixed .logo img.white {
    opacity: 0;
}

.header.fixed .logo img.gray {
    opacity: 1;
}

.header-bg.fixed {
    background: rgba(255, 255, 255, .96);
}
    
    
    
    
    
    
    
}
/* 20260606 global fixed header repair: keep scrolled navigation complete on desktop and mobile. */
.header.fixed {
    top: 0;
    z-index: 2100;
    overflow: visible;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header.fixed .nav,
.header.fixed .nav > li {
    overflow: visible;
}

.header.fixed .nav > li > a {
    color: #191919;
    opacity: 1;
    text-shadow: none;
}

.header.fixed .nav > li > a.link-line::after {
    background: #191919;
}

.header.fixed .nav .sub-menu,
.header.fixed .sy-product-mega-panel {
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 12px 34px rgba(0, 0, 0, .08);
}

.header.fixed .nav .sub-menu a,
.header.fixed .sy-product-mega a {
    color: #191919;
    text-shadow: none;
}

.header.fixed .logo img.white {
    opacity: 0;
}

.header.fixed .logo img.gray {
    opacity: 1;
}

.header.fixed .search a {
    background-image: url(../images/icon_top_search_gray.png);
}

.header-bg.fixed {
    z-index: 2000;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
/* 20260606 fixed header stacking repair v2: keep the fixed background behind all navigation. */
.header,
.header.fixed {
    z-index: 2300;
    isolation: isolate;
}

.header-bg,
.header-bg.fixed {
    z-index: 2200;
    pointer-events: none;
}

.header.fixed .nav,
.header.fixed .nav > li,
.header.fixed .sy-product-mega,
.header.fixed .nav .sub-menu {
    overflow: visible;
}

.header.fixed .sy-product-mega,
.header.fixed .nav .sub-menu {
    z-index: 2400;
}

.header.fixed .sy-product-mega-panel,
.header.fixed .nav .sub-menu {
    border: 1px solid rgba(25, 25, 25, .08);
    background: rgba(255, 255, 255, .98);
}
