.ma-shi-fu-page {
  --ma-shi-fu-ink: #373532;
  --ma-shi-fu-muted: #746f69;
  --ma-shi-fu-gold: #c69b4a;
  --ma-shi-fu-paper: #fafafa;
  --ma-shi-fu-line: #dfc78e;
    background-color: #f5f5f5;
    padding-bottom: 48px;
}
.ma-shi-fu-page,
.ma-shi-fu-page * {
  box-sizing: border-box;
	
}
.ma-shi-fu-page img {
  display: block;
  max-width: 100%;
}
.ma-shi-fu-wrap {
  width: calc(100% - 40px);
  max-width: 1240px;
  margin-inline: auto;
}
.ma-shi-fu-brand-intro {
  padding: 68px 0 44px;
  text-align: center;
}
.ma-shi-fu-products {
    display: grid;
    gap: 30px;
}
.ma-shi-fu-product-card {
  min-height: 440px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
 background: rgba(255, 255, 255, 0.85);
  overflow: hidden;
}
.ma-shi-fu-product-visual {
  height: 100%;
  min-width: 0;
/*
  border-bottom:1px solid #c99c52;*/
}
.ma-shi-fu-product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ma-shi-fu-product-copy {
  position: relative;
  z-index: 1;
  margin: 36px 36px 36px 0;
  padding: 48px 36px;
  background: #fff;
  box-shadow: 0 4px 18px rgba(45, 35, 20, 0.07);
}
.ma-shi-fu-reverse .ma-shi-fu-product-visual {
  order: 2;
}
.ma-shi-fu-reverse .ma-shi-fu-product-copy {
  order: 1;
  margin: 36px 0 36px 36px;
}
.ma-shi-fu-product-copy h2 {
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 12px;
    font-size: 36px;
    font-weight: 200;
    color: #333;
    line-height: 1.4;
}

.ma-shi-fu-product-copy h2 strong {
    font-weight: 700;
    margin-left: 6px;
	}
.ma-shi-fu-product-name {
  padding-bottom: 2px;
  border-bottom: 2px   solid #c99c52;
}
.ma-shi-fu-product-copy h3 {
  margin: 0 0 22px;
  font-size: 24px;
  line-height: 1.45;
  font-weight: 500;
}

.ma-shi-fu-page dl > div {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 8px;
  margin-top: 8px;
}

.ma-shi-fu-page dt {
  white-space: nowrap;
}

.ma-shi-fu-page dt,
.ma-shi-fu-page dd {
  margin: 0;
	color: #666; 
    font-size: 16px;
    line-height: 1.4;
}

.ma-shi-fu-closing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 36px;
  margin-bottom: 72px;
  background: #f8f1e4;
}
.ma-shi-fu-closing-copy {
  padding: 52px 52px 42px;
}
.ma-shi-fu-closing h2 {
  margin: 0 0 7px;
  color: var(--ma-shi-fu-gold);
  font-size: 34px;
  line-height: 1.25;
  font-weight: 400;
}
.ma-shi-fu-closing-tagline {
    display: inline-block;
    margin: 0 0 25px !important;
    padding-top: 0px;
    padding-right: 12px;
    padding-left: 12px;
    padding-bottom: 0px;
    color: #fff !important;
    background: var(--ma-shi-fu-gold);
    letter-spacing: 8px;
    font-size: 20px!important;
}
.ma-shi-fu-closing-copy p {
  margin: 0 0 17px;
  color: #666;
  font-size: 18px;
  line-height: 1.6;
}
.ma-shi-fu-closing-copy strong {
  text-decoration: underline;
  text-decoration-color: var(--ma-shi-fu-gold);
  text-underline-offset: 4px;
}
.ma-shi-fu-closing > img {
  width: 100%;
  height: 100%;
  min-height: 319px;
  object-fit: cover;
}

/* 馬師傅頁面進場動畫：只有 JS 啟用後才套用，避免內容無法顯示 */
.ma-shi-fu-animate {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 0.85s ease,
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.ma-shi-fu-animate.ma-shi-fu-from-left {
  transform: translateX(-44px);
}

.ma-shi-fu-animate.ma-shi-fu-from-right {
  transform: translateX(44px);
}

.ma-shi-fu-animate.ma-shi-fu-is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.brand-series .brand-logo.ma-shi-fu-animate {
  transition-delay: 0.05s;
}

.brand-series .product-series.ma-shi-fu-animate {
  transition-delay: 0.18s;
}

.ma-shi-fu-product-card .ma-shi-fu-product-copy.ma-shi-fu-animate {
  transition-delay: 0.14s;
}

.ma-shi-fu-product-visual {
  overflow: hidden;
}

.ma-shi-fu-product-visual img {
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.ma-shi-fu-product-card.ma-shi-fu-is-visible .ma-shi-fu-product-visual img {
  transform: scale(1.035);
}

.ma-shi-fu-product-card:hover .ma-shi-fu-product-visual img {
  transform: scale(1.065);
}

.ma-shi-fu-product-copy dl > div {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.ma-shi-fu-product-card.ma-shi-fu-is-visible .ma-shi-fu-product-copy dl > div {
  opacity: 1;
  transform: translateY(0);
}

.ma-shi-fu-product-card.ma-shi-fu-is-visible .ma-shi-fu-product-copy dl > div:nth-child(1) {
  transition-delay: 0.34s;
}

.ma-shi-fu-product-card.ma-shi-fu-is-visible .ma-shi-fu-product-copy dl > div:nth-child(2) {
  transition-delay: 0.45s;
}

.ma-shi-fu-product-card.ma-shi-fu-is-visible .ma-shi-fu-product-copy dl > div:nth-child(3) {
  transition-delay: 0.56s;
}

.ma-shi-fu-closing.ma-shi-fu-is-visible > img {
  animation: ma-shi-fu-closing-image 1.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes ma-shi-fu-closing-image {
  from {
    opacity: 0;
    transform: scale(1.05);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ma-shi-fu-animate,
  .ma-shi-fu-product-visual img,
  .ma-shi-fu-product-copy dl > div,
  .ma-shi-fu-closing.ma-shi-fu-is-visible > img {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }
}

@media (max-width: 760px) {
  .ma-shi-fu-wrap {
    width: min(100% - 28px, 560px);
  }
  .ma-shi-fu-brand-intro {
    padding: 42px 0 32px;
  }
  .ma-shi-fu-brand-logo {
    width: 180px;
    margin-bottom: 18px;
  }
  .ma-shi-fu-brand-intro p {
    font-size: 15px;
    text-align: left;
  }
  .ma-shi-fu-desktop-only {
    display: none;
  }
  .ma-shi-fu-products {
    gap: 22px;
  }
  .ma-shi-fu-product-card {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }
  .ma-shi-fu-product-visual,
  .ma-shi-fu-reverse .ma-shi-fu-product-visual {
    order: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 1.08/1;
  }
  .ma-shi-fu-product-copy,
  .ma-shi-fu-reverse .ma-shi-fu-product-copy {
    order: 2;
    width: calc(100% - 28px);
    margin: -22px 14px 14px;
    padding: 28px 24px;
  }
  .ma-shi-fu-product-copy h2 {
    font-size: 23px;
  }
  .ma-shi-fu-product-copy h3 {
    font-size: 17px;
    margin-bottom: 16px;
  }
  .ma-shi-fu-page dl {
    font-size: 14px;
  }
  .ma-shi-fu-page dl > div {
    grid-template-columns: 44px 1fr;
  }
  .ma-shi-fu-closing {
    grid-template-columns: 1fr;
    margin-top: 28px;
    margin-bottom: 28px;
  }
  .ma-shi-fu-closing-copy {
    padding: 34px 26px 30px;
  }
  .ma-shi-fu-closing h2 {
    font-size: 38px;
  }
	.ma-shi-fu-closing-tagline {
  
    letter-spacing: -1px;
}

  .ma-shi-fu-animate.ma-shi-fu-from-left,
  .ma-shi-fu-animate.ma-shi-fu-from-right {
    transform: translateY(28px);
  }

	.ma-shi-fu-animate.ma-shi-fu-is-visible {
    transform: translateY(0);
  }
	
  .ma-shi-fu-closing > img {
    min-height: 0;
    aspect-ratio: 1.48/1;
  }
}
@media (max-width: 390px) {
  .ma-shi-fu-wrap {
    width: calc(100% - 20px);
  }
  .ma-shi-fu-product-copy,
  .ma-shi-fu-reverse .ma-shi-fu-product-copy {
    padding: 24px 18px;
  }
  .ma-shi-fu-page dl > div {
    display: block;
  }
  .ma-shi-fu-page dt {
    font-weight: 700;
  }
}

/* 馬師傅品牌介紹：滑鼠移入微微上浮 */
@media (hover: hover) {
  .brand-series
  .product-series.ma-shi-fu-animate.ma-shi-fu-is-visible:hover {
    transform: translateY(-4px);
  }
}


