:root {
    --walnut: #111;
    --clay: #555;
    --ink: #181818;
    --muted: #777;
    --line: #d8d8d8;
    --soft: #f4f4f4;
}

.s_content * {
    text-wrap-mode: wrap !important;
    word-break: break-word
}

.s_content video,
.s_content img {
    display: inline-block;
    max-width: 100%;
    height: auto !important
}

.s_content img {
    height: auto !important
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
}

body {
    margin: 0;
    color: var(--ink);
    background: #fff;
}

body.is-motion-ready .reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
}

body.is-motion-ready .reveal-on-scroll.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

body.is-motion-ready .text-reveal {
    opacity: 0;
    transform: translateY(12px);
}

body.is-motion-ready .text-reveal.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-on-scroll,
.text-reveal {
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

.text-reveal {
    position: relative;
}

.text-reveal::after {
    width: 34px;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -5px;
    content: "";
    background: var(--clay);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.65s ease 0.25s;
}

.text-reveal.is-revealed::after {
    transform: scaleX(1);
}

.scroll-marquee {
    position: relative;
    z-index: 12;
    height: 34px;
    overflow: hidden;
    color: #f4f1ec;
    background: #111;
    border-bottom: 1px solid #2c2c2c;
}

.scroll-marquee-track {
    width: max-content;
    height: 100%;
    display: flex;
    align-items: center;
    will-change: transform;
}

.scroll-marquee-group {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.scroll-marquee-item {
    flex: 0 0 auto;
    padding-right: 48px;
    color: #d8d2ca;
    font-size: 10px;
    letter-spacing: 0.28em;
    line-height: 1;
    text-transform: uppercase;
}

body.is-intro-active {
    overflow: hidden;
}

.intro-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    color: #fff;
    background: #0b0b0b;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.85s ease, visibility 0.85s ease;
}

.intro-overlay.is-complete {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.intro-content {
    width: min(620px, calc(100% - 48px));
    text-align: center;
}

.intro-kicker {
    margin: 0 0 24px;
    color: #aaa;
    font-size: 11px;
    letter-spacing: 0.35em;
}

.intro-type {
    display: inline;
    margin: 0;
    font-size: clamp(24px, 4vw, 52px);
    font-weight: 300;
    letter-spacing: 0.08em;
    line-height: 1.2;
}

.intro-cursor {
    display: inline-block;
    width: 1px;
    height: 1.1em;
    margin-left: 7px;
    vertical-align: -0.12em;
    background: #fff;
    animation: intro-blink 0.8s steps(1) infinite;
}

.intro-progress {
    width: min(190px, 55vw);
    height: 1px;
    margin: 34px auto 0;
    overflow: hidden;
    background: #333;
}

.intro-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: #fff;
    transition: width 2.8s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes intro-blink {
    50% {
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {

    .intro-cursor,
    .scroll-marquee-track {
        animation: none;
    }

    .reveal-on-scroll,
    .text-reveal,
    .home-product-card,
    .product-card,
    .news-item {
        transition: none;
    }

    body.is-motion-ready .reveal-on-scroll,
    body.is-motion-ready .text-reveal,
    body.is-motion-ready .reveal-on-scroll.is-revealed,
    body.is-motion-ready .text-reveal.is-revealed {
        opacity: 1;
        transform: none;
    }

    .text-reveal::after {
        transform: scaleX(1);
        transition: none;
    }
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
textarea {
    color: inherit;
}

.page-header {
    position: relative;
    z-index: 10;
    height: 94px;
    background: #fff;
}

.header-inner,
.content-wrap {
    width: min(1400px, calc(100% - 48px));
    margin: 0 auto;
}

.header-inner {
    height: 100%;
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.header-inner>a:first-child {
    grid-column: 2;
    grid-row: 1;
    z-index: 2;
}

.brand-logo {
    max-height: 50px;
    height: auto;
    object-fit: contain;
}

.main-nav {
    grid-column: 1 / -1;
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    pointer-events: none;
}

.nav-group {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 5px;
    pointer-events: auto;
}

.nav-group-left {
    justify-content: flex-start;
}

.nav-group-right {
    justify-content: flex-end;
}

.main-nav a {
    width: 106px;
    height: 80px;
    display: grid;
    place-items: center;
    position: relative;
    z-index: 0;
    white-space: nowrap;
    font-size: 14px;
    transition: color 0.25s ease, transform 0.25s ease;
}

.main-nav a:first-child {
    width: 78px;
}

.main-nav a:hover,
.main-nav a.is-current {
    color: #fff;
}

.main-nav a:hover {
    transform: translateY(-2px);
}

.main-nav a:hover::before,
.main-nav a.is-current::before {
    position: absolute;
    inset: 20px 0;
    z-index: -1;
    content: "";
    border-radius: 24px;
    background: var(--walnut);
}

.inner-banner {
    height: 165px;
    overflow: hidden;
}

.inner-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-wrap {
    padding-top: 79px;
    padding-bottom: 84px;
}

.section-heading {
    margin: 0;
    font-size: 27px;
    font-weight: 400;
    line-height: 1.1;
}

.section-subheading {
    margin: 9px 0 0;
    color: #777;
    font-size: 16px;
}

.site-footer {
    min-height: 0;
    padding: 72px 0 28px;
    color: #fff;
    background: #000;
    border-top: 0;
}

.footer-inner {
    width: min(1400px, calc(100% - 96px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 72px;
}

.footer-title {
    margin: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.16em;
}

.footer-rule {
    width: 20px;
    margin: 17px 0 18px;
    border-top: 1px solid #fff;
}

.footer-line {
    margin: 5px 0;
    font-size: 14px;
    line-height: 1.45;
}

.footer-line img {
    display: inline-block;
    width: 14px;
    height: auto;
    margin-right: 7px;
    vertical-align: -2px;
    filter: invert(1) opacity(0.72);
}

.footer-social {
    align-self: start;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: #777;
    transition: color 0.25s ease, transform 0.25s ease;
}

.social-links a:hover {
    color: #fff;
    transform: translateY(-3px);
}

.social-links img {
    width: 21px;
    height: 21px;
    filter: invert(1) opacity(0.58);
    transition: filter 0.25s ease;
}

.social-links a:hover img {
    filter: invert(1) opacity(1);
}

.footer-bottom {
    width: min(1400px, calc(100% - 96px));
    margin: 64px auto 0;
    padding-top: 20px;
    border-top: 1px solid #2b2b2b;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #8b8b8b;
    font-size: 12px;
    letter-spacing: 0.08em;
}

.home-hero {
    position: relative;
    overflow: hidden;
}

.hero-stage {
    position: relative;
    height: min(52.9vw, 742px);
    min-height: 370px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    clip-path: inset(0 0 0 100%);
    transform: translate3d(7%, 0, 0) scale(1.05);
    pointer-events: none;
    transition: opacity 0.85s ease, clip-path 1.05s cubic-bezier(0.22, 1, 0.36, 1), transform 1.05s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide.is-active {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translate3d(0, 0, 0) scale(1);
    pointer-events: auto;
}

.hero-slide.is-leaving {
    opacity: 1;
    clip-path: inset(0 100% 0 0);
    transform: translate3d(-4%, 0, 0) scale(1.02);
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 50px;
    height: 50px;
    padding: 15px;
    border: 0;
    background: rgba(30, 30, 30, 0.27);
    cursor: pointer;
    transform: translateY(-50%);
}

.hero-arrow:hover {
    background: rgba(30, 30, 30, 0.47);
}

.hero-arrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: invert(1);
}

.hero-arrow-prev {
    left: 0;
}

.hero-arrow-next {
    right: 0;
}

.hero-thumbs {
    position: absolute;
    right: 0;
    bottom: 24px;
    left: 0;
    z-index: 4;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
}

.hero-thumb {
    width: 150px;
    height: 50px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: transparent;
    cursor: pointer;
    opacity: 0.54;
    transition: opacity 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.hero-thumb.is-active {
    border-color: #fff;
    opacity: 1;
}

.hero-thumb:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.hero-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-story {
    min-height: 486px;
    padding: 102px max(10.5%, calc((100% - 1110px) / 2)) 72px;
    display: grid;
    grid-template-columns: 340px minmax(500px, 650px);
    justify-content: space-between;
    gap: 58px;
    color: #fff;
    background: #171717;
}

.feature-story-copy {
    padding-top: 12px;
}

.feature-story-copy img {
    width: 290px;
}

.feature-rule {
    width: 118px;
    margin: 27px 0 62px;
    border-top: 1px solid #fff;
}

.feature-panel {
    padding: 54px 58px 40px;
    color: #222;
    background: #fff;
    font-size: 15px;
    line-height: 1.75;
}

.feature-story-image {
    width: 100%;
    align-self: start;
}

.home-products {
    padding: 84px 0 92px;
}

.home-products .content-wrap {
    padding: 0;
}

.home-products-title {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 44px;
}

.home-products-title img {
    width: 362px;
}

.home-category-links {
    margin-left: auto;
    display: flex;
    gap: 30px;
    font-size: 15px;
}

.home-category-links a:hover {
    color: var(--walnut);
}

.home-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.home-product-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.home-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

.home-product-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.55s ease, filter 0.55s ease;
}

.home-product-card>img:first-child {
    position: relative;
    z-index: 1;
}

.card-swap-image {
    position: absolute;
    inset: 0 0 auto;
    height: auto !important;
    aspect-ratio: 1;
    z-index: 2;
    clip-path: inset(100% 0 0 0);
    opacity: 0;
    transform: translateY(18px) scale(1.08) rotate(2deg);
    filter: grayscale(1) contrast(1.04);
}

.home-product-card:hover>img:first-child,
.product-card:hover .product-card-image>img:first-child {
    opacity: 0.14;
    transform: translateY(-10px) scale(0.94) rotate(-1deg);
    filter: grayscale(1);
}

.home-product-card:hover .card-swap-image,
.product-card:hover .card-swap-image {
    clip-path: inset(0 0 0 0);
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0);
}

.home-product-card p {
    margin: 14px 0 0;
    text-align: center;
    font-size: 14px;
}

.home-visual-modules {
    padding: 96px 0 104px;
    color: #fff;
    background: #111;
}

.visual-modules-heading {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 42px;
}

.visual-heading-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid #555;
}

.visual-heading-mark img,
.visual-module-caption img {
    width: 18px;
    filter: invert(1);
}

.visual-heading-kicker {
    margin: 0 0 8px;
    color: #999;
    font-size: 11px;
    letter-spacing: 0.24em;
}

.visual-modules-heading h2 {
    margin: 0;
    font-size: clamp(25px, 3.2vw, 42px);
    font-weight: 300;
    letter-spacing: 0.02em;
}

.visual-module-grid {
    display: grid;
    grid-template-columns: 1.45fr 1fr 1fr;
    gap: 16px;
}

.visual-module {
    position: relative;
    /* min-height: 310px; */
    overflow: hidden;
    background: #222;
}

/* 
.visual-module-wide {
    min-height: 420px;
} */

.visual-module>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s ease;
}

.visual-module::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.78));
    pointer-events: none;
}

.visual-module-caption {
    position: absolute;
    right: 18px;
    bottom: 17px;
    left: 18px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-size: 14px;
}

.visual-module:hover>img {
    transform: scale(1.07);
    filter: grayscale(0.35);
}

.home-brand-story {
    padding: 106px 0 94px;
    background: var(--soft);
}

.brand-story-layout {
    width: min(1120px, calc(100% - 64px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 78px;
    align-items: center;
}

.brand-story-layout img {
    width: 100%;
}

.brand-story-copy img {
    width: 326px;
    margin-bottom: 31px;
}

.brand-story-copy p {
    margin: 0;
    color: #4b4b4b;
    font-size: 15px;
    line-height: 1.9;
}

.about-layout {
    display: grid;
    grid-template-columns: 1.08fr 1fr;
    gap: 56px;
}

.about-title {
    margin: 0 0 19px;
    font-size: 37px;
    font-weight: 400;
}

.about-intro {
    margin: 0 0 32px;
    font-size: 15px;
    line-height: 2;
}

.about-photos {
    width: 100%;
}

.about-photos img {
    width: 100%;
}

.about-right-heading img {
    width: 304px;
}

.about-right-heading {
    margin-bottom: 39px;
}

.about-right-copy {
    min-height: 184px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.about-right-kicker {
    margin: 0 0 14px;
    color: #999;
    font-size: 10px;
    letter-spacing: 0.22em;
}

.about-right-copy h2 {
    margin: 0 0 15px;
    color: #222;
    font-size: clamp(22px, 1.9vw, 30px);
    font-weight: 400;
    line-height: 1.22;
}

.about-right-copy p:last-child {
    max-width: 340px;
    margin: 0;
    color: #666;
    font-size: 13px;
    line-height: 1.9;
}

.about-right-photo {
    width: 100%;
}

.about-statement {
    margin: 13px 0 16px;
    color: var(--clay);
    font-size: 23px;
    line-height: 1.3;
}

.about-body {
    margin: 0;
    font-size: 15px;
    line-height: 2;
    text-align: justify;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px;
    padding-top: 10px;
    padding-bottom: 102px;
}

.about-value {
    min-width: 0;
}

.about-value img {
    width: 3em;
    height: 3em;
    margin-bottom: 18px;
    filter: brightness(0) saturate(100%);
}

.about-value h3 {
    margin: 0 0 8px;
    color: #222;
    font-size: 15px;
    font-weight: 500;
}

.about-value p {
    max-width: 210px;
    margin: 0;
    color: #777;
    font-size: 12px;
    line-height: 1.8;
}

.catalog-intro {
    margin-bottom: 38px;
}

.catalog-intro .section-heading {
    color: #111;
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.05;
}

/* Keep the reveal rule below the bilingual title stack. */
.catalog-intro .section-heading::after {
    bottom: -31px;
}

.catalog-intro .section-subheading {
    margin-top: 8px;
    color: var(--clay);
    font-size: 14px;
    letter-spacing: 0.04em;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
}

.catalog-categories {
    display: grid;
    align-content: start;
}

.catalog-categories a {
    height: 62px;
    display: grid;
    place-items: center;
    border-bottom: 2px solid #fff;
    color: #555;
    background: #f3f3f3;
    font-size: 15px;
}

.catalog-categories a:hover,
.catalog-categories a.is-active {
    color: #fff;
    background: var(--walnut);
}

.catalog-main {
    min-width: 0;
}

.catalog-sort {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    border: 0;
}

.catalog-count {
    margin-left: auto;
    padding-right: 0;
    color: #9d9999;
    font-size: 14px;
    letter-spacing: 0.08em;
}

.product-grid {
    padding-top: 31px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 30px;
    row-gap: 54px;
}

.product-card {
    min-width: 0;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.11);
}

.product-card-image {
    position: relative;
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.55s ease, filter 0.55s ease;
}

.product-card-image>img:first-child {
    position: relative;
    z-index: 1;
}

.product-card-image::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.26), transparent 42%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.product-card:hover .product-card-image::after {
    opacity: 1;
}

.product-card-info {
    margin-top: 9px;
    padding: 10px 11px 11px;
    color: #fff;
    background: #111;
}

.product-card-info p {
    margin: 0;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-card-info strong {
    display: block;
    margin-top: 3px;
    color: #d5663f;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.product-cart {
    float: right;
    width: 18px;
    margin-top: -24px;
    opacity: 0.42;
    filter: invert(1);
}

.product-detail-wrap {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    padding: 0 0 28px;
}

.detail-main {
    padding-top: 0;
    display: grid;
    grid-template-columns: 402px 1fr;
    gap: 36px;
}

.detail-info {
    padding-top: 1px;
}

.detail-title {
    margin: 0;
    font-size: 20px;
    font-weight: 400;
}

.detail-english {
    margin: 11px 0 14px;
    color: #9b9b9b;
    font-size: 13px;
}

.detail-price-box {
    padding: 21px 15px 16px;
    background: #f4f4f4;
}

.detail-price-box p {
    margin: 0 0 10px;
    color: #9a9a9a;
    font-size: 14px;
}

.detail-price-box p:last-child {
    margin-bottom: 0;
}

.detail-price-box strong {
    margin-left: 8px;
    color: #d5663f;
    font-size: 27px;
    font-weight: 600;
}

.detail-old-price {
    text-decoration: line-through;
}

.news-list-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 52px;
}

.news-categories {
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-categories a {
    padding: 8px 18px;
    font-size: 14px;
}

.news-categories a:hover,
.news-categories a.is-active {
    color: #fff;
    background: #050505;
}

.news-items {
    display: grid;
    gap: 25px;
}

.news-item {
    display: grid;
    grid-template-columns: 155px 1fr;
    gap: 34px;
    min-height: 82px;
}

.news-date {
    padding-right: 34px;
    border-right: 1px solid #ddd;
    color: #666;
    text-align: center;
}

.news-date strong,
.news-date span {
    display: block;
}

.news-date strong {
    font-size: 42px;
    line-height: 0.95;
    letter-spacing: 0.04em;
    font-weight: 400;
}

.news-date span {
    margin-top: 10px;
    color: #999;
    font-size: 13px;
    letter-spacing: 0.08em;
}

.news-copy h2 {
    margin: 0 0 13px;
    color: #555;
    font-size: 19px;
    font-weight: 400;
}

.news-copy p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: #999;
    font-size: 13px;
    line-height: 1.7;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.news-item:hover h2 {
    color: var(--walnut);
}

.news-item {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), padding-left 0.35s ease;
}

.news-item:hover {
    padding-left: 8px;
    transform: translateX(3px);
}

.pagination {
    margin: 40px auto 0;
    display: flex;
    align-items: center;
    gap: 7px;
}

.pagination a,
.pagination span,
.pagination button {
    min-width: 27px;
    height: 27px;
    padding: 0 8px;
    display: grid;
    place-items: center;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 13px;
}

.pagination svg {
    width: 1em;
    height: auto;
}

.pagination .active,
.pagination .is-current {
    color: #fff;
    border-color: #111;
    background: #111;
}

.news-detail {
    padding-top: 67px;
}

.news-article-title {
    margin: 0;
    text-align: center;
    font-size: 29px;
    font-weight: 400;
}

.news-article-title.text-reveal::after {
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
}

.news-article-title.text-reveal.is-revealed::after {
    transform: translateX(-50%) scaleX(1);
}

.news-meta-line {
    margin: 23px 0 28px;
    color: #777;
    text-align: center;
    font-size: 12px;
}

.news-detail-rule {
    border-top: 1px solid #ddd;
}

.news-summary {
    margin: 30px 0 33px;
    padding: 14px;
    color: #606060;
    background: #f3f3f3;
    font-size: 14px;
    line-height: 1.8;
}

.news-article {
    color: #333;
    font-size: 15px;
    line-height: 1.7;
}

.news-article p {
    margin: 0 0 4px;
}

.news-next-link {
    margin: 35px 0 0;
    text-align: right;
    font-size: 14px;
}

.contact-content {
    width: min(1160px, calc(100% - 48px));
    padding-top: 78px;
}

.contact-heading {
    padding-bottom: 13px;
    border-bottom: 1px solid #d7d7d7;
}

.contact-heading h1 {
    margin: 0;
    color: #555;
    font-size: 21px;
    font-weight: 400;
}

.contact-heading p {
    margin: 6px 0 0;
    color: #aaa;
    font-size: 16px;
}

.contact-info {
    margin: 15px 0 43px;
    color: #777;
    font-size: 14px;
    line-height: 1.75;
}

.contact-info h2 {
    margin: 0 0 16px;
    color: #555;
    font-size: 17px;
    font-weight: 400;
}

.contact-info p {
    margin: 2px 0;
}

.contact-form {
    width: calc(100% - 42px);
    margin-left: 11px;
}

.form-row {
    margin-bottom: 17px;
}

.form-row label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-row input,
.form-row textarea {
    width: 100%;
    border: 1px solid #cfcfcf;
    outline: 0;
    background: #fff;
    font-size: 14px;
}

.form-row input {
    height: 40px;
    padding: 0 10px;
}

.form-row textarea {
    height: 212px;
    padding: 10px;
    resize: vertical;
}

.form-note {
    margin: -3px 0 0;
    text-align: right;
    font-size: 14px;
}

.captcha-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

.captcha-row input {
    width: 95px;
}

.captcha-box {
    width: 84px;
    height: 34px;
    display: grid;
    place-items: center;
    color: #444;
    background: #eee;
    letter-spacing: 4px;
    font-size: 16px;
}

.contact-submit {
    width: 95px;
    height: 36px;
    display: block;
    margin: 25px auto 0;
    border: 0;
    color: #fff;
    background: #111;
    cursor: pointer;
}

.contact-submit:hover {
    background: var(--walnut);
}

.toast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    z-index: 20;
    padding: 10px 18px;
    color: #fff;
    background: rgba(0, 0, 0, 0.78);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 18px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    font-size: 14px;
}

.toast.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

@media (max-width: 900px) {
    .scroll-marquee {
        height: 30px;
    }

    .scroll-marquee-item {
        font-size: 9px;
        letter-spacing: 0.2em;
    }

    .page-header {
        height: 70px;
    }

    .header-inner,
    .content-wrap {
        width: calc(100% - 16px);
    }

    .brand-logo {
        max-height: 54px;
    }

    .main-nav {
        gap: 2px;
    }

    .main-nav a {
        width: 82px;
        height: 60px;
        font-size: 13px;
    }

    .main-nav a:first-child {
        width: 62px;
    }

    .main-nav a.is-current {
        color: #222;
        background: transparent;
        border-radius: 0;
    }

    .main-nav a.is-current::before,
    .main-nav a:hover::before {
        display: none;
    }

    .inner-banner {
        height: 95px;
    }

    .content-wrap {
        padding-top: 63px;
        padding-bottom: 73px;
    }

    .section-heading {
        font-size: 21px;
    }

    .catalog-intro .section-heading {
        font-size: 25px;
    }

    .catalog-intro .section-heading::after {
        bottom: -28px;
    }

    .catalog-intro .section-subheading {
        margin-top: 6px;
        font-size: 13px;
    }

    .section-subheading {
        font-size: 14px;
    }

    .site-footer {
        min-height: 0;
        padding: 52px 0 24px;
    }

    .footer-inner {
        width: calc(100% - 48px);
        gap: 36px;
    }

    .footer-line {
        font-size: 12px;
    }

    .footer-bottom {
        width: calc(100% - 48px);
        margin-top: 42px;
    }

    .hero-stage {
        height: 284px;
        min-height: 0;
    }

    .hero-arrow {
        width: 39px;
        height: 39px;
        padding: 12px;
    }

    .hero-thumbs {
        right: 14px;
        bottom: 14px;
        left: 14px;
        gap: 8px;
    }

    .hero-thumb {
        width: clamp(60px, 5vw, 118px);
        height: clamp(32px, 10vw, 39px);
    }

    .feature-story {
        min-height: 418px;
        padding: 67px 70px 0;
        grid-template-columns: 230px 390px;
        gap: 0;
    }

    .feature-story-copy img {
        width: 230px;
    }

    .feature-rule {
        margin: 22px 0 47px;
        width: 94px;
    }

    .feature-panel {
        padding: 36px 44px;
        font-size: 12px;
    }

    .feature-story-image {
        width: 390px;
    }

    .home-products,
    .home-brand-story {
        padding: 66px 0;
    }

    .home-products-title img {
        width: 260px;
    }

    .home-visual-modules {
        padding: 72px 0 78px;
    }

    .visual-module-grid {
        grid-template-columns: 1fr 1fr;
    }

    .visual-module-wide {
        grid-column: 1 / -1;
        min-height: 330px;
    }

    .visual-module {
        min-height: 240px;
    }

    .home-category-links {
        gap: 20px;
        font-size: 13px;
    }

    .home-product-grid {
        gap: 18px;
        grid-template-columns: 1fr 1fr;
    }

    .brand-story-layout {
        width: calc(100% - 16px);
        gap: 37px;
    }

    .brand-story-copy img {
        width: 260px;
    }

    .brand-story-copy p {
        font-size: 13px;
    }

    .about-layout {
        gap: 24px;
    }

    .about-title {
        font-size: 28px;
    }

    .about-intro,
    .about-body {
        font-size: 12px;
        line-height: 2;
    }

    .about-photos {
        gap: 18px;
    }

    .about-right-heading {
        margin-bottom: 27px;
    }

    .about-right-heading img {
        width: 255px;
    }

    .about-statement {
        font-size: 19px;
    }

    .catalog-layout {
        grid-template-columns: 116px 1fr;
        gap: 24px;
    }

    .catalog-categories a {
        height: 49px;
        font-size: 13px;
    }

    .catalog-sort {
        height: 35px;
    }

    .catalog-count {
        padding-right: 12px;
        font-size: 12px;
    }

    .product-grid {
        padding-top: 20px;
        column-gap: 12px;
        row-gap: 48px;
    }

    .product-card-info {
        padding: 8px;
    }

    .product-detail-wrap {
        width: calc(100% - 16px);
    }

    .product-card-info p,
    .product-card-info strong {
        font-size: 12px;
    }

    .detail-main {
        grid-template-columns: 258px 1fr;
        gap: 29px;
    }

    .detail-title {
        font-size: 16px;
    }

    .detail-english,
    .detail-price-box p {
        font-size: 12px;
    }

    .detail-price-box {
        padding: 16px 12px;
    }


    .news-list-head {
        margin-bottom: 48px;
    }

    .news-items {
        gap: 24px;
    }

    .news-item {
        grid-template-columns: 115px 1fr;
        gap: 31px;
    }

    .news-date {
        padding-right: 25px;
    }

    .news-date strong {
        font-size: 34px;
    }

    .news-date span {
        font-size: 12px;
    }

    .news-copy h2 {
        font-size: 15px;
    }

    .news-copy p {
        font-size: 12px;
    }

    .pagination {
        margin-left: 146px;
    }

    .news-detail {
        padding-top: 52px;
    }

    .news-article-title {
        font-size: 25px;
    }

    .news-summary,
    .news-article {
        font-size: 13px;
    }

    .contact-content {
        padding-top: 58px;
    }

    .contact-form {
        width: calc(100% - 78px);
        margin-left: 16px;
    }
}

@media (max-width: 620px) {
    .scroll-marquee-item {
        padding-right: 34px;
        font-size: 8px;
    }

    .header-inner {
        gap: 8px;
    }

    .brand-logo {
        max-height: 42px;
    }

    .main-nav {
        gap: 0;
    }

    .main-nav a {
        width: auto;
        padding: 0 5px;
        font-size: 11px;
    }

    .footer-inner {
        width: calc(100% - 32px);
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        width: calc(100% - 32px);
        margin-top: 34px;
        padding-top: 16px;
    }

    .footer-bottom p {
        font-size: 10px;
        line-height: 1.6;
    }

    .home-products-title,
    .home-category-links {
        gap: 10px;
    }

    .home-products-title img {
        width: 185px;
    }

    .home-visual-modules {
        padding: 58px 0 64px;
    }

    .visual-modules-heading {
        gap: 12px;
        margin-bottom: 26px;
    }

    .visual-heading-mark {
        width: 36px;
        height: 36px;
    }

    .visual-modules-heading h2 {
        font-size: 25px;
    }

    .visual-heading-kicker {
        font-size: 9px;
    }

    .visual-module-grid {
        grid-template-columns: 1fr;
    }

    .visual-module-wide,
    .visual-module {
        grid-column: auto;
        min-height: 260px;
    }

    .home-category-links {
        font-size: 11px;
    }

    .feature-story {
        padding-left: 28px;
        padding-right: 28px;
        grid-template-columns: 1fr;
    }

    .feature-story-image {
        width: 100%;
    }

    .feature-panel {
        margin-top: -20px;
    }

    .about-layout,
    .brand-story-layout {
        grid-template-columns: 1fr;
    }

    .catalog-layout,
    .detail-main {
        grid-template-columns: 1fr;
    }

    .catalog-categories {
        grid-template-columns: repeat(3, 1fr);
    }

    .catalog-categories a {
        border-right: 2px solid #fff;
    }

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

    .news-item {
        grid-template-columns: 80px 1fr;
        gap: 18px;
    }

    .news-date {
        padding-right: 16px;
    }

    .news-date strong {
        font-size: 28px;
    }

    .news-date span {
        margin-top: 8px;
        font-size: 10px;
        letter-spacing: 0.04em;
    }

    .pagination {
        margin-left: 0;
    }

    .news-article-title {
        font-size: 21px;
    }

    .contact-form {
        width: 100%;
        margin-left: 0;
    }
}

/* Reference-style navigation and layout refinements. */
.main-nav a:hover,
.main-nav a.is-current {
    color: #111;
    transform: none;
}

.main-nav a::before {
    inset: auto 14px 17px;
    height: 2px;
    border-radius: 0;
    background: #111;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.main-nav a:hover::before,
.main-nav a.is-current::before {
    transform: scaleX(1);
}

.main-nav a:hover {
    color: #666;
}

.main-nav a.is-current {
    font-weight: 600;
}

.catalog-kicker,
.contact-kicker {
    margin: 0 0 10px;
    color: #999;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.catalog-layout {
    grid-template-columns: 210px 1fr;
    gap: 42px;
}

.catalog-categories {
    gap: 8px;
}

.catalog-categories a {
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    border: 1px solid #dedede;
    color: #555;
    background: #fff;
    font-size: 13px;
    transition: color 0.25s ease, border-color 0.25s ease, padding 0.25s ease, background 0.25s ease;
}

.catalog-categories a span {
    color: #aaa;
    font-size: 10px;
    letter-spacing: 0.12em;
}

.catalog-categories a:hover,
.catalog-categories a.is-active {
    padding-left: 16px;
    color: #fff;
    border-color: #111;
    background: #111;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 76px;
    align-items: start;
    margin-top: 48px;
}

.contact-left-column {
    min-width: 0;
}

.contact-info {
    margin: 0;
    padding: 0 0 32px;
    border-bottom: 1px solid #ddd;
}

.contact-info h2 {
    margin-bottom: 18px;
    color: #222;
    font-size: 22px;
}

.contact-info p:not(.contact-kicker) {
    margin: 5px 0;
}

.contact-form {
    width: 100%;
    margin: 0;
    padding: 30px;
    border: 1px solid #ddd;
    background: #fafafa;
}

.contact-form h2 {
    margin: 0 0 25px;
    color: #222;
    font-size: 30px;
    font-weight: 400;
}

.contact-form .form-row {
    margin-bottom: 20px;
}

.contact-form .form-row label {
    color: #555;
    font-size: 12px;
    letter-spacing: 0.06em;
}

.contact-form .form-row input,
.contact-form .form-row textarea {
    border-color: #d0d0d0;
    background: #fff;
}

.contact-submit {
    width: 100%;
    height: 44px;
    margin-top: 12px;
    background: #111;
    font-size: 13px;
    letter-spacing: 0.08em;
}

.contact-map-section {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 34px;
}

.contact-map-full {
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    gap: 52px;
    align-items: start;
    margin-top: 46px;
    padding-top: 0;
    border-top: 0;
}

.contact-heading {
    border-bottom: 0;
}

.contact-map-section,
.contact-map-full {
    border-top: 0;
}

.contact-layout .contact-info {
    padding: 0;
    border-top: 0;
    border-bottom: 0;
}

.contact-form {
    border: 0;
    padding: 0;
    background: transparent;
}

.contact-form h2 {
    margin-bottom: 26px;
    font-size: 28px;
}

.contact-form .form-row input,
.contact-form .form-row textarea {
    border-width: 0 0 1px;
    border-color: #cfcfcf;
    padding-left: 0;
    background: transparent;
}

.contact-form .form-row textarea {
    min-height: 96px;
}

.contact-submit {
    width: auto;
    min-width: 130px;
    padding: 0 24px;
}

.contact-map-full .contact-map-frame {
    min-height: 320px;
}

.contact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 76px;
    margin-top: 58px;
}


.contact-map-copy h2 {
    font-size: clamp(22px, 3vw, 30px);
}

.contact-map-frame {
    min-height: 260px;
    padding: 18px;
}

.seasonal-section {
    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) minmax(460px, 1.2fr);
    gap: 58px;
    align-items: center;
    padding: 96px 0;

    color: #fff;
    background: #171717;
}

.seasonal-intro {
    padding-left: 4px;
}

.seasonal-intro h1 {
    max-width: 360px;
    margin: 12px 0 20px;
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 300;
    line-height: 1.08;
}

.seasonal-intro>p:not(.feature-kicker) {
    max-width: 300px;
    margin: 0;
    color: #bdbdbd;
    font-size: 14px;
    line-height: 1.8;
}

.seasonal-index {
    display: inline-block;
    margin-top: 42px;
    color: #8e8e8e;
    font-size: 11px;
    letter-spacing: 0.18em;
}

.card-swap {
    position: relative;
    height: clamp(340px, 43vw, 520px);
    perspective: 1100px;
}

.swap-card {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: #242424;
    opacity: 0;
    transform: translate3d(42px, 22px, -60px) rotate(4deg) scale(0.94);
    transition: opacity 0.55s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.55s ease;
}

.swap-card:nth-child(2) {
    transform: translate3d(28px, 14px, -40px) rotate(3deg) scale(0.96);
}

.swap-card:nth-child(3) {
    transform: translate3d(14px, 7px, -20px) rotate(1.5deg) scale(0.98);
}

.swap-card.is-active {
    z-index: 3;
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0) scale(1);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.swap-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swap-card::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.72));
}

.swap-card>div {
    position: absolute;
    right: 28px;
    bottom: 24px;
    left: 28px;
    z-index: 1;
}

.swap-card p {
    margin: 0 0 8px;
    color: #d6d6d6;
    font-size: 10px;
    letter-spacing: 0.2em;
}

.swap-card h2 {
    margin: 0;
    font-size: clamp(22px, 3vw, 38px);
    font-weight: 300;
}

.footer-qr {
    object-fit: contain;
}

@media (max-width: 900px) {
    .seasonal-section {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 70px 24px;
    }

    .seasonal-intro h1 {
        max-width: 500px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .contact-map-full {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 620px) {
    .catalog-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .catalog-categories a {
        height: 50px;
    }



    .card-swap {
        height: 300px;
    }
}

/* Refinements: quieter cards, clearer typography, and richer footer/detail layouts. */
.shiny-text {
    display: inline-block;
    color: #1b1b1b;
    background: linear-gradient(110deg, #1b1b1b 28%, #8d8d8d 43%, #1b1b1b 58%);
    background-size: 220% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shiny-sweep 4.8s ease-in-out infinite;
}

@keyframes shiny-sweep {

    0%,
    55% {
        background-position: 180% 0;
    }

    100% {
        background-position: -20% 0;
    }
}

.home-products-title {
    align-items: flex-end;
    gap: 28px;
    margin-bottom: 38px;
}

.home-products-heading h2 {
    margin: 6px 0 0;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 400;
    letter-spacing: 0;
}

.home-products-kicker {
    margin: 0;
    color: #8d8d8d;
    font-size: 11px;
    letter-spacing: 0.22em;
}

.home-category-links {
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.home-category-links a {
    padding: 9px 14px;
    border: 1px solid #d8d8d8;

    color: #555;
    font-size: 12px;
    transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.home-category-links a:hover {
    color: #fff;
    border-color: #111;
    background: #111;
}

.home-product-card {
    overflow: hidden;
    border: 1px solid #ececec;
    background: #fff;
    box-shadow: none;
}

.home-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.home-product-card-copy {
    margin: 0;
    padding: 13px 14px 15px;
    background: #fff;
}

.home-product-card-copy p {
    margin: 0;
    padding: 0;
    color: #333;
    text-align: left;
    font-size: 13px;
    line-height: 1.4;
}

.product-card {
    overflow: hidden;
    border: 1px solid #e9e9e9;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.09);
}

.product-card-info {
    position: relative;
    min-height: 72px;
    margin-top: 0;
    padding: 13px 46px 13px 14px;
    color: #222;
    border-top: 1px solid #ececec;
    background: #fff;
}

.product-card-info p {
    color: #333;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    white-space: normal;
}

.product-card-info strong {
    margin-top: 5px;
    color: #888;
    font-size: 12px;
    font-weight: 400;
}

.product-cart {
    position: absolute;
    top: 50%;
    right: 14px;
    float: none;
    width: 18px;
    margin: 0;
    opacity: 0.5;
    filter: none;
    transform: translateY(-50%);
}

.product-detail-wrap {
    padding-top: clamp(42px, 5vw, 74px);
}

.detail-main {
    grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.8fr);
    gap: clamp(34px, 6vw, 82px);
}

.product-gallery {
    min-width: 0;
}

.Product_top {
    aspect-ratio: 1 / 0.8;
    overflow: hidden;
    border: 1px solid #fff;
}

.Product_top .zhenshangyin-wrap,
.Product_top .item,
.Product_top .img_box {
    height: 100%;
}

.Product_top img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.Product_thumb {
    position: relative;
    margin-top: 18px;
    padding: 0 42px;
}

.Product_thumb .Item {
    aspect-ratio: 1/0.8;
    overflow: hidden;
    border: 1px solid #e1dfda;
    cursor: pointer;
}

.Product_thumb .Item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.Product_thumb .prev,
.Product_thumb .next {
    position: absolute;
    top: 50%;
    display: grid;
    width: 30px;
    height: 30px;
    padding: 0;
    place-items: center;
    color: #3e3c38;
    border: 0;
    background: transparent;
    cursor: pointer;
    transform: translateY(-50%);
}

.Product_thumb .prev {
    left: 0;
}

.Product_thumb .next {
    right: 0;
}

.Product_thumb .prev:hover,
.Product_thumb .next:hover {
    color: #d5663f;
}

.detail-field-list {
    margin-top: 28px;
    border-top: 1px solid #e7e5e1;
}

.detail-field-item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 18px;
    padding: 17px 0;
    border-bottom: 1px solid #e7e5e1;
}

.detail-field-item h2,
.detail-field-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
}

.detail-field-item h2 {
    color: #222;
    font-weight: 600;
}

.detail-field-item p {
    color: #6f6d69;
}

.detail-description {
    max-width: 760px;
    margin: 62px auto 0;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
}

.detail-description h2 {
    margin: 10px 0 14px;
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 400;
    line-height: 1.35;
}

.detail-description p:last-child {
    color: #666;
    font-size: 15px;
    line-height: 1.9;
}

.contact-map-section {
    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) minmax(300px, 1.2fr);
    gap: 48px;
    align-items: flex-start;
}

.contact-map-kicker {
    margin: 0 0 10px;
    color: #999;
    font-size: 11px;
    letter-spacing: 0.2em;
}

.contact-map-copy h2 {
    margin: 0 0 14px;
    color: #222;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 400;
}

.contact-map-copy p:last-child {
    margin: 0;
    color: #777;
    font-size: 14px;
    line-height: 1.8;
}

.contact-map-frame {
    min-height: 300px;
    display: grid;
    place-items: center;
    padding: 24px;
    border: 1px solid #e2e2e2;
    background: #f7f7f5;
}

.contact-map-frame img {
    width: 100%;
    max-height: 340px;
    object-fit: contain;
    opacity: 0.72;
}

.footer-brand {
    max-width: 290px;
    margin: 0;
    color: #aaa;
    font-size: 13px;
    line-height: 1.8;
}

.footer-qr-wrap {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.footer-qr {
    width: 96px;
    height: 96px;
    padding: 7px;
    background: #fff;
    image-rendering: pixelated;
}

.footer-qr-note {
    max-width: 150px;
    margin: 0;
    color: #999;
    font-size: 12px;
    line-height: 1.6;
}

.fake-qr {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, transparent 45%, #111 45% 55%, transparent 55%) 0 0 / 17px 17px,
        linear-gradient(transparent 45%, #111 45% 55%, transparent 55%) 0 0 / 17px 17px,
        #fff;
}

.fake-qr::before,
.fake-qr::after {
    position: absolute;
    width: 24px;
    height: 24px;
    content: "";
    border: 5px solid #111;
    background: #fff;
}

.fake-qr::before {
    top: 9px;
    left: 9px;
}

.fake-qr::after {
    right: 9px;
    bottom: 9px;
}

@media (max-width: 620px) {
    .home-products-title {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .home-category-links {
        margin-left: 0;
    }

    .contact-map-section {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 58px;
        padding-top: 34px;
    }

    .contact-map-frame {
        min-height: 220px;
    }
}

/* Final visual pass: source-like stacked seasonal cards and a quieter footer. */
.seasonal-section {
    grid-template-columns: minmax(250px, 0.58fr) minmax(0, 1.42fr);
    gap: 56px;
    padding-right: max(4vw, calc((100% - 1600px) / 2));
    padding-left: max(4vw, calc((100% - 1600px) / 2));
    min-height: 720px;
}

.seasonal-intro {
    align-self: center;
}

.seasonal-kicker {
    margin: 0 0 16px;
    color: #8f8f8f;
    font-size: 10px;
    letter-spacing: 0.24em;
}

.seasonal-intro h1 {
    max-width: 270px;
    margin: 0 0 18px;
    font-size: clamp(24px, 2.2vw, 32px);
    line-height: 1.2;
}

.seasonal-intro>p:not(.feature-kicker):not(.seasonal-kicker) {
    max-width: 280px;
}

.card-swap {
    height: clamp(460px, 68vh, 680px);
    margin-right: 1.5vw;
    perspective: 1400px;
}

.swap-card {
    opacity: 0;
    pointer-events: none;
    transform: translate3d(74px, -28px, -120px) rotate(4deg) scale(0.91);
    transition: opacity 0.9s ease, transform 1.05s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.9s ease;
}

.swap-card.is-active,
.swap-card.is-behind-1,
.swap-card.is-behind-2 {
    opacity: 1;
    pointer-events: auto;
}

.swap-card.is-active {
    z-index: 3;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4);
}

.swap-card.is-behind-1 {
    z-index: 2;
    transform: translate3d(34px, -16px, -50px) rotate(2.5deg) scale(0.96);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.swap-card.is-behind-2 {
    z-index: 1;
    transform: translate3d(62px, -30px, -100px) rotate(4.5deg) scale(0.92);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.swap-card.is-hidden {
    z-index: 0;
    opacity: 0;
    transform: translate3d(86px, -38px, -150px) rotate(6deg) scale(0.88);
}

.swap-card>div {
    right: 34px;
    bottom: 30px;
    left: 34px;
}

.swap-card h2 {
    max-width: 440px;
    font-size: clamp(24px, 2.8vw, 42px);
}

.swap-card-link {
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 4;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.58);
    background: rgba(17, 17, 17, 0.44);
    transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.swap-card-link img {
    width: 17px;
    height: 17px;
    object-fit: contain;
    filter: invert(1);
    transition: transform 0.35s ease;
}

.swap-card-link:hover {
    border-color: #fff;
    background: #111;
    transform: translateY(-2px);
}

.swap-card-link:hover img {
    transform: translateX(3px);
}

.brand-story-copy {
    max-width: 480px;
}

.brand-story-text {
    display: grid;
    gap: 16px;
}

.brand-story-text p {
    margin: 0;
}

.brand-story-text .brand-story-eyebrow {
    color: #888;
    font-size: 11px;
    letter-spacing: 0.2em;
}

.brand-story-text h2 {
    margin: 0;
    color: #222;
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 400;
    line-height: 1.18;
}

.footer-intro {
    display: block;
    width: min(1400px, calc(100% - 96px));
    margin: 0 auto 42px;
    color: #fff;
    font-size: clamp(14px, 3vw, 20px);
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1.2;
    background: linear-gradient(110deg, #fff 28%, #777 45%, #fff 62%);
    background-size: 220% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-quality {
    padding: 78px 24px 92px;
    text-align: center;
    background: #fff;
}

.home-quality-copy {
    width: min(560px, 100%);
    margin: 0 auto;
}

.home-quality-kicker {
    margin: 0 0 13px;
    color: #999;
    font-size: 10px;
    letter-spacing: 0.24em;
}

.home-quality-copy h2 {
    margin: 0 0 14px;
    color: #222;
    font-size: clamp(25px, 3vw, 34px);
    font-weight: 400;
    line-height: 1.2;
}

.home-quality-copy>p:last-child {
    max-width: 500px;
    margin: 0 auto;
    color: #666;
    font-size: 14px;
    line-height: 1.9;
}

.home-quality-image {
    width: min(520px, 100%);
    margin: 38px auto 0;
    overflow: hidden;
}

.home-quality-image img {
    width: 100%;
    aspect-ratio: 1.45;
    object-fit: cover;
    filter: grayscale(0.08);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s ease;
}

.home-quality-image:hover img {
    transform: scale(1.035);
    filter: grayscale(0);
}

/* Product listing cards: open, editorial spacing instead of boxed tiles. */
.product-card {
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: translateY(0);
}

.product-card:hover {
    box-shadow: none;
    transform: translateY(-4px);
}

.product-card-image {
    background: #f6f6f3;
}

.product-card-image::after {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 46%);
}

.product-card-info {
    min-height: 62px;
    margin-top: 15px;
    padding: 0 2px 0 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 22px;
    grid-template-rows: auto auto;
    gap: 5px 12px;
    align-items: start;
    border: 0;
    background: transparent;
}

.product-card-info p {
    grid-column: 1;
    margin: 0;
    color: #252525;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-card-info strong {
    grid-column: 1;
    margin: 0;
    color: #d5663f;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.product-cart {
    position: static;
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    width: 17px;
    margin: 0;
    opacity: 0.48;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-card:hover .product-cart {
    opacity: 0.82;
    transform: translateX(2px);
}

.contact-heading,
.contact-layout .contact-info {
    border: 0;
}

.contact-map-full {
    grid-template-columns: 1fr;
    gap: 22px;
}

.contact-map-full .contact-map-frame {
    width: 100%;
    min-height: 360px;
}

@media (max-width: 900px) {
    .seasonal-section {
        grid-template-columns: 1fr;
        min-height: 0;
        padding-right: 24px;
        padding-left: 24px;
    }

    .card-swap {
        height: min(70vh, 560px);
        margin-right: 12px;
    }

    .footer-intro {
        width: calc(100% - 48px);
    }

    .home-quality {
        padding-top: 64px;
        padding-bottom: 76px;
    }
}

@media (max-width: 620px) {
    .card-swap {
        height: 390px;
        margin-right: 0;
    }

    .swap-card-link {
        top: 15px;
        right: 15px;
        width: 36px;
        height: 36px;
    }

    .swap-card.is-behind-1 {
        transform: translate3d(18px, -10px, -50px) rotate(2.5deg) scale(0.96);
    }

    .swap-card.is-behind-2 {
        transform: translate3d(32px, -20px, -100px) rotate(4deg) scale(0.92);
    }

    .footer-intro {
        width: calc(100% - 32px);
        margin-bottom: 30px;
        font-size: 25px;
    }

    .home-quality {
        padding: 56px 16px 68px;
    }

    .home-quality-copy>p:last-child {
        font-size: 13px;
    }

    .home-quality-image {
        margin-top: 28px;
    }

    .product-card-info {
        margin-top: 12px;
        grid-template-columns: minmax(0, 1fr) 19px;
    }

    .product-cart {
        width: 15px;
    }

    .about-values {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 18px;
        padding-top: 0;
    }

    .about-right-copy {
        min-height: 145px;
        margin-bottom: 27px;
    }

    .about-right-copy h2 {
        font-size: 25px;
    }

    .about-right-copy p:last-child {
        font-size: 12px;
    }
}

/* Soft, squared navigation state with a deliberate underline reveal. */
.main-nav a {
    color: #666;
    transition: color 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.main-nav a::before {
    display: block;
    inset: auto 15px 15px;
    height: 1px;
    border-radius: 0;
    background: #111;
    opacity: 0.9;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

.main-nav a:hover,
.main-nav a.is-current {
    color: #111;
    transform: translateY(-1px);
}

.main-nav a:hover::before,
.main-nav a.is-current::before {
    transform: scaleX(1);
}

@media (max-width: 900px) {
    .main-nav a::before {
        display: block;
        inset: auto 7px 9px;
        height: 1px;
    }

    .main-nav a.is-current::before,
    .main-nav a:hover::before {
        display: block;
    }
}

/* Group-level navigation state: the active side reveals a quiet top rule. */
.nav-group {
    position: relative;
    isolation: isolate;
    transition: color 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-group::before {
    display: none;
}

.nav-group:hover {
    transform: translateY(-1px);
}

.main-nav a {
    transition: color 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.45s ease;
}

.main-nav a::before {
    inset: auto 15px 15px;
    height: 1px;
    border-radius: 0;
    background: #111;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

.main-nav a::after {
    position: absolute;
    top: 10px;
    right: 15px;
    left: 15px;
    height: 1px;
    content: "";
    background: #111;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
    pointer-events: none;
}

.main-nav a:hover::before,
.main-nav a.is-current::before {
    opacity: 0.9;
    transform: scaleX(1);
}

.main-nav a:hover::after,
.main-nav a.is-current::after {
    opacity: 0.9;
    transform: scaleX(1);
}

.main-nav a:hover {
    color: #111;
    transform: translateY(-1px);
}

.main-nav a.is-current {
    color: #111;
    font-weight: 600;
}

/* Keep one animated top rule per navigation item. */
.main-nav a::before {
    display: none !important;
}

.main-nav a::after {
    display: block;
    top: 10px;
    right: 15px;
    left: 15px;
    height: 1px;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

.main-nav a:hover::after,
.main-nav a.is-current::after {
    opacity: 0.9;
    transform: scaleX(1);
}

@media (max-width: 900px) {
    .main-nav a::after {
        top: 7px;
        right: 7px;
        left: 7px;
    }
}

/* Refined full-bleed brand story and compact quality promises. */
.home-brand-story {
    padding: 0;
}

.brand-story-layout {
    width: 100%;
    margin: 0;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0;
}

.brand-story-layout>img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.brand-story-copy {
    width: min(520px, calc(100% - 96px));
    max-width: none;
    margin: 0 auto;
    padding: 74px 0;
    align-self: center;
}

.brand-story-copy>p:last-child {
    margin-top: 36px;
}

.brand-story-copy>p:last-child a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-story-copy>p:last-child a::after {
    width: 16px;
    height: 16px;
    content: "";
    background: url("../images/icon_arrow_right.png") center / contain no-repeat;
    filter: brightness(0);
    transition: transform 0.35s ease;
}

.brand-story-copy>p:last-child a:hover::after {
    transform: translateX(4px);
}

.brand-story-copy>p:last-child a img {
    display: none;
}

.home-quality {
    padding: 52px 24px 58px;
    text-align: center;
    background: #fff;
}

.home-quality-kicker {
    display: none;
    margin: 0;
    color: #999;
    font-size: 10px;
    letter-spacing: 0.24em;
}

.home-quality-values {
    width: min(940px, 100%);
    margin: 0 auto;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    padding: 0;
    text-align: left;
}

.home-quality-values .about-value {
    text-align: center;
    transition: transform 0.3s ease;
}

.home-quality-values .about-value img {
    width: 4em;
    height: 3em;
    margin: 0 auto 13px;
    transition: transform 0.3s ease;
}

.home-quality-values .about-value:hover {
    transform: translateY(-5px);
}

.home-quality-values .about-value:hover img {
    transform: scale(1.06);
}

@media (prefers-reduced-motion: reduce) {

    .home-quality-values .about-value,
    .home-quality-values .about-value img {
        transition: none;
    }

    .home-quality-values .about-value:hover,
    .home-quality-values .about-value:hover img {
        transform: none;
    }
}

.home-quality-values .about-value h3 {
    margin-bottom: 7px;
    font-size: 14px;
}

.home-quality-values .about-value p {
    margin-right: auto;
    margin-left: auto;
    font-size: 12px;
    line-height: 1.7;
}

.detail-description {
    max-width: 980px;
    margin: 108px auto 58px;
    padding-top: 0;
    border-top: 0;
}

.detail-description-kicker {
    margin: 0 0 15px;
    color: #999;
    font-size: 10px;
    letter-spacing: 0.24em;
}

.detail-description h2 {
    max-width: 560px;
    margin: 0 0 34px;
    color: #222;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 400;
    line-height: 1.35;
}

.detail-richtext {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(280px, 1.08fr);
    gap: 28px 48px;
    align-items: center;
}

.detail-richtext p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 2;
}

.detail-richtext img {
    width: 100%;
    aspect-ratio: 1.35;
    object-fit: cover;
}

.detail-richtext img:nth-of-type(2) {
    grid-column: 1 / -1;
    width: min(100%, 680px);
    justify-self: center;
    aspect-ratio: 1.8;
}

.detail-product-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 980px;
    margin: 0 auto 64px;
}

.detail-product-nav-item {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 2.25;
    background: #f4f3ef;
}

.detail-product-nav-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.detail-product-nav-item:hover img {
    transform: scale(1.04);
}

.detail-product-nav-label {
    position: absolute;
    z-index: 1;
    top: 14px;
    color: #000;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-shadow: 0 1px 4px rgb(0 0 0 / 32%);
}

.detail-product-nav-prev .detail-product-nav-label {
    left: 16px;
}

.detail-product-nav-next .detail-product-nav-label {
    right: 16px;
}

@media (max-width: 620px) {
    .brand-story-layout {
        grid-template-columns: 1fr;
    }

    .brand-story-layout>img {
        min-height: 320px;
        height: auto;
    }

    .brand-story-copy {
        width: auto;
        margin: 0;
        padding: 56px 24px 64px;
    }

    .home-quality {
        padding: 42px 16px 48px;
    }

    .home-quality-values {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 26px 16px;
    }

    .detail-description {
        margin-top: 78px;
    }

    .detail-richtext {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .detail-richtext img,
    .detail-richtext img:nth-of-type(2) {
        grid-column: auto;
        width: 100%;
    }

    .detail-product-nav {
        gap: 12px;
        margin-bottom: 40px;
    }

    .detail-product-nav-item {
        aspect-ratio: 1.5;
    }

    .detail-product-nav-label {
        top: 10px;
        font-size: 11px;
    }

    .detail-product-nav-prev .detail-product-nav-label {
        left: 11px;
    }

    .detail-product-nav-next .detail-product-nav-label {
        right: 11px;
    }
}

/* Mobile layout cleanup: compact navigation, stable card heights, and tighter form spacing. */
@media (max-width: 620px) {
    body {
        overflow-x: hidden;
    }

    .page-header {
        height: 108px;
    }

    .header-inner {
        width: calc(100% - 20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        padding: 8px 0 7px;
    }

    .header-inner>a:first-child {
        flex: 0 0 auto;
    }

    .brand-logo {
        max-height: 42px;
    }

    .main-nav {
        width: 100%;
        display: flex;
        align-items: stretch;
        justify-content: stretch;
        gap: 4px;
        padding: 3px;
        border: 1px solid #e5e5e2;
        border-radius: 6px;
        background: #f7f7f4;
        pointer-events: auto;
    }

    .nav-group {
        min-width: 0;
        flex: 1;
        gap: 2px;
        justify-content: stretch;
        transform: none !important;
    }

    .nav-group-left {
        flex: 0.9;
    }

    .nav-group-right {
        flex: 1.35;
    }

    .main-nav a {
        width: auto !important;
        min-width: 0;
        height: 30px;
        flex: 1;
        padding: 0 3px;
        border-radius: 4px;
        color: #666;
        font-size: 11px;
        line-height: 1;
    }

    .main-nav a::before,
    .main-nav a::after {
        display: none !important;
    }

    .main-nav a:hover {
        color: #111;
        background: #e9e9e6;
        transform: none;
    }

    .main-nav a.is-current,
    .main-nav a.is-current:hover {
        color: #fff;
        background: #111;
        font-weight: 600;
    }

    .content-wrap {
        width: calc(100% - 32px);
        padding-top: 42px;
        padding-bottom: 56px;
    }

    .seasonal-section {
        padding: 56px 24px 62px;
    }

    .feature-panel {
        padding: 28px 24px;
    }

    .brand-story-copy {
        padding: 48px 24px 56px;
    }

    .home-quality {
        padding: 42px 16px 48px;
    }

    .catalog-layout {
        gap: 20px;
    }

    .catalog-categories a {
        padding-right: 12px;
        padding-left: 12px;
    }

    .product-grid {
        column-gap: 16px;
        row-gap: 34px;
    }

    .home-product-card-copy p,
    .product-card-info p {
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
    }

    .home-product-card-copy p {
        height: 1.4em;
        min-height: 0;
        max-height: 1.4em;
        padding: 0;
        line-height: 1.4;
        -webkit-line-clamp: 1;
    }

    .product-card-info p {
        min-height: 0;
        -webkit-line-clamp: 1;
    }

    .product-card-info strong {
        font-size: 16px;
    }

    .contact-form .form-row textarea {
        height: 128px;
        min-height: 128px;
    }
}

/* Mobile spacing pass: reduce oversized section and component gaps. */
@media (max-width: 620px) {
    .content-wrap {
        padding-top: 32px;
        padding-bottom: 44px;
    }

    .catalog-layout,
    .detail-main {
        gap: 16px;
    }

    .product-grid {
        row-gap: 24px;
    }

    .product-card-info {
        margin-top: 8px;
    }

    .detail-description {
        margin-top: 48px;
        margin-bottom: 36px;
    }

    .detail-description h2 {
        margin-bottom: 24px;
    }

    .detail-richtext {
        gap: 18px;
    }

    .news-list-head {
        margin-bottom: 28px;
    }

    .news-items {
        gap: 16px;
    }

    .news-item {
        gap: 14px;
    }

    .news-copy h2 {
        margin-bottom: 8px;
    }

    .pagination {
        margin-top: 28px;
    }

    .news-detail {
        padding-top: 36px;
    }

    .news-meta-line {
        margin: 14px 0 20px;
    }

    .news-summary {
        margin: 20px 0 24px;
    }

    .news-next-link {
        margin-top: 24px;
    }

    .contact-content {
        padding-top: 36px;
    }

    .contact-layout {
        gap: 28px;
        margin-top: 30px;
    }

    .contact-info h2 {
        margin-bottom: 12px;
    }

    .contact-form h2 {
        margin-bottom: 18px;
    }

    .form-row {
        margin-bottom: 12px;
    }

    .form-row label {
        margin-bottom: 5px;
    }

    .contact-form .form-row {
        margin-bottom: 14px;
    }

    .contact-map-section,
    .contact-map-full {
        gap: 18px;
        margin-top: 32px;
    }

    .contact-map-section {
        padding-top: 24px;
    }

    .footer-intro {
        margin-bottom: 22px;
    }

    .footer-inner {
        gap: 24px;
    }

    .footer-bottom {
        margin-top: 24px;
    }

    .home-products-title {
        margin-bottom: 24px;
    }

    .home-quality-image {
        margin-top: 22px;
    }

    .home-quality {
        margin: 0;
        padding: 24px 16px;
    }

    .home-quality-values {
        gap: 20px 14px;
    }

    .home-quality-values .about-value img {
        margin-bottom: 8px;
    }

    .home-quality-values .about-value h3 {
        margin-bottom: 4px;
    }

    .visual-modules-heading {
        margin-bottom: 20px;
    }

    .feature-panel {
        margin-top: -12px;
    }

    .about-values {}

    .about-right-copy {
        margin-bottom: 20px;
    }

    .brand-story-copy>p:last-child {
        margin-top: 24px;
    }
}

/* Let the full-width contact map size itself from its content. */
.contact-map-full .contact-map-frame {
    height: auto;
    min-height: 0;
}

@media (max-width: 760px) {
    .product-detail-wrap {
        width: min(100% - 32px, 640px);
        padding-top: 34px;
    }

    .detail-main {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .Product_thumb {
        margin-top: 14px;
        padding: 0 32px;
    }

    .Product_thumb .Item {
        height: 72px;
    }

    .Product_thumb .prev,
    .Product_thumb .next {
        width: 26px;
        height: 26px;
    }

    .detail-field-item {
        grid-template-columns: 1fr;
        gap: 5px;
    }
}