:root {
  --red: #cc0212;
  --ink: #222;
  --muted: #666;
  --soft: #f8f8f8;
  --wrap: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); font-family: "PingFang SC", "Microsoft YaHei", sans-serif; background: #fff; }
body.no-scroll { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; }

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  padding: 25px 0;
  background: #fff;
  transition: padding 0.45s ease, box-shadow 0.45s ease;
}
.header.compact { padding: 15px 0; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06); }
.header-wrap { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; width: 220px; height: 65.25px; align-items: center; gap: 11px; transition: width 0.45s ease; }
.header.compact .logo { width: 215px; }
.logo-symbol { position: relative; display: block; flex: 0 0 62px; width: 62px; height: 52px; border: 3px solid #138646; border-radius: 50% 50% 42% 42%; }
.logo-symbol::before, .logo-symbol::after, .logo-symbol i { position: absolute; content: ""; }
.logo-symbol::before { top: 8px; left: 18px; width: 16px; height: 33px; border-radius: 100% 0 100% 0; background: #138646; transform: rotate(-19deg); }
.logo-symbol::after { top: 10px; left: 31px; width: 14px; height: 31px; border-radius: 0 100% 0 100%; background: var(--red); transform: rotate(18deg); }
.logo-symbol i { top: -8px; left: 28px; width: 5px; height: 12px; border-radius: 4px; background: #138646; }
.logo strong, .logo small { display: block; white-space: nowrap; }
.logo strong { color: #116d3a; font-size: 18px; font-weight: 800; }
.logo small { margin-top: 3px; color: #777; font-size: 8px; font-weight: 600; }
.header-right { display: flex; box-sizing: content-box; width: 80%; max-width: 1100px; align-items: center; justify-content: flex-end; padding-left: 80px; }
.nav { width: 100%; }
.nav > ul { display: flex; align-items: center; justify-content: space-between; margin: 0; padding: 0; list-style: none; }
.nav li { position: relative; list-style: none; }
.nav > ul > li > a { display: block; width: 100%; padding: 0; color: #555; font-size: 17px; line-height: 50px; text-align: right; white-space: nowrap; transition: color 0.3s ease; }
.nav a:hover, .nav a.active { color: var(--red); }
.nav li ul {
  position: absolute;
  top: 100%;
  left: 50%;
  display: none;
  width: 160px;
  margin: 0;
  padding: 10px 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.16);
  list-style: none;
  transform: translateX(-50%);
}
.nav li:hover ul { display: block; animation: fadeIn 0.3s ease; }
.nav li ul a { display: block; color: #666; font-size: 14px; line-height: 38px; text-align: center; }
.search-open { position: relative; flex: 0 0 50px; width: 50px; height: 60px; margin-left: 20px; border: 0; background: transparent; }
.search-open::before { position: absolute; top: 15px; left: 12px; width: 14px; height: 14px; content: ""; border: 2px solid #666; border-radius: 50%; }
.search-open::after { position: absolute; top: 30px; left: 28px; width: 9px; height: 2px; content: ""; background: #666; transform: rotate(45deg); }
.shop-link { flex: 0 0 130px; height: 36px; margin-left: 10px; padding: 0 5px 0 10px; color: var(--red); border: 1px solid var(--red); border-radius: 25px; font-size: 15px; line-height: 34px; text-align: center; }
.shop-link span { margin-left: 4px; font-size: 18px; }
.lang-link { height: 36px; margin-left: 10px; padding: 0 12px; color: #fff; border-radius: 25px; background: var(--red); font-size: 16px; font-weight: 600; line-height: 36px; }
.cart-link, .nav-trigger { display: none; }

.search-modal {
  position: fixed;
  z-index: 90;
  top: 0;
  right: 0;
  left: 0;
  visibility: hidden;
  height: 450px;
  padding-top: 160px;
  border-bottom: 1px solid #eee;
  background: rgba(247, 247, 247, 0.88);
  opacity: 0;
  backdrop-filter: blur(10px);
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.search-modal.open { visibility: visible; opacity: 1; }
.search-close { position: absolute; top: 120px; right: 45px; width: 42px; height: 42px; border: 0; background: transparent; }
.search-close::before, .search-close::after { position: absolute; top: 20px; left: 7px; width: 30px; height: 2px; content: ""; background: #333; }
.search-close::before { transform: rotate(45deg); }
.search-close::after { transform: rotate(-45deg); }
.search-form { display: flex; width: min(670px, calc(100% - 40px)); height: 62px; margin: 0 auto; overflow: hidden; border-radius: 5px; background: #fff; }
.search-form > span { position: relative; width: 58px; }
.search-form > span::before { position: absolute; top: 20px; left: 20px; width: 15px; height: 15px; content: ""; border: 2px solid #aaa; border-radius: 50%; }
.search-form > span::after { position: absolute; top: 36px; left: 35px; width: 8px; height: 2px; content: ""; background: #aaa; transform: rotate(45deg); }
.search-form input { flex: 1; min-width: 0; border: 0; outline: none; color: #777; font-size: 17px; }
.search-form button { width: 100px; color: #fff; border: 0; background: var(--red); font-size: 18px; }
.search-categories { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; width: min(800px, calc(100% - 40px)); margin: 34px auto 0; }
.search-categories a { color: #666; font-size: 15px; text-align: center; }
.search-categories a:hover { color: var(--red); }

.banner { position: relative; width: 100%; height: min(47.2vw, 680px); min-height: 520px; overflow: hidden; background: #fff; }
.banner-track, .banner-slide { position: absolute; inset: 0; }
.banner-slide { visibility: hidden; opacity: 0; transition: opacity 0.7s ease, visibility 0.7s ease; }
.banner-slide.active { visibility: visible; opacity: 1; }
.banner-slide a { display: flex; width: 100%; height: 100%; justify-content: center; overflow: hidden; }
.banner-slide img { width: 1902px; max-width: none; height: 680px; margin: 0 auto; object-fit: cover; transition: transform 0.5s ease; }
.banner-slide.active img { transform: none; }
.banner-slide.active:hover img { transform: scale(1.05); }
.banner-copy { position: absolute; top: 28%; right: 13%; left: 13%; color: #271b14; text-align: center; text-shadow: 0 1px 2px rgba(255, 255, 255, 0.85); }
.banner-copy p { margin: 0 0 17px; color: #111; font-size: 40px; font-weight: 800; }
.banner-copy h1 { margin: 0; color: #69310d; font-family: "STKaiti", "KaiTi", serif; font-size: 50px; font-weight: 700; }
.banner-copy div { margin-top: 15px; color: #6d320e; font-size: 22px; }
.banner-copy div p { margin: 0; color: inherit; font-size: inherit; font-weight: inherit; }
.banner-dots { position: absolute; z-index: 3; bottom: 27px; left: 50%; display: flex; gap: 7px; transform: translateX(-50%); }
.banner-dots button { width: 12px; height: 12px; padding: 0; border: 2px solid #fff; border-radius: 50%; background: transparent; }
.banner-dots button.active { background: var(--red); border-color: var(--red); }

.about-bg { padding-bottom: 115px; background: var(--soft); }
.about { display: flex; padding-top: 120px; padding-bottom: 100px; }
.about-left { width: 50%; padding-right: 9%; }
.about-left h1, .section-head h1 {
  margin: 0;
  color: var(--soft);
  font-size: 42px;
  font-weight: 800;
  text-shadow: -1px -1px 0 var(--red), 1px -1px 0 var(--red), -1px 1px 0 var(--red), 1px 1px 0 var(--red);
}
.about-left h1 { line-height: 61px; }
.about-left h2 { margin: 0; padding: 10px 0 40px; color: #000; font-size: 40px; font-weight: 500; line-height: 50px; }
.more-button { display: block; width: 160px; height: 53px; color: #fff; border-radius: 5px; background: var(--red); font-size: 16px; line-height: 53px; text-align: center; transition: width 0.35s ease; }
.more-button span, .more-button b { margin-left: 18px; font-weight: 400; transition: margin 0.35s ease; }
.more-button:hover { width: 180px; }
.more-button:hover span, .more-button:hover b { margin-left: 28px; }
.about-right { width: 50%; color: #666; font-size: 16px; line-height: 34px; text-align: justify; }
.about-right p { margin: 0; padding-bottom: 20px; }
.building { height: 450px; overflow: hidden; }
.building img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.building:hover img { transform: scale(1.04); }
.metric-wrap { padding-top: 68px; }
.metrics { display: flex; justify-content: space-between; gap: 28px; }
.metrics article { display: flex; width: 24%; min-height: 106px; align-items: center; justify-content: space-between; padding: 20px 26px; color: var(--red); background: #fff; }
.metrics i { font-style: normal; font-size: 38px; }
.metrics article > div { text-align: right; }
.metrics strong { display: block; font-size: 38px; line-height: 1.1; }
.metrics p { margin: 7px 0 0; color: #666; font-size: 13px; }

.product-section { position: relative; padding: 112px 0 48px; overflow: hidden; background: #fff; }
.product-section > .wrap { position: relative; z-index: 2; }
.product-section::before { position: absolute; top: 145px; right: 0; left: 0; height: 430px; content: ""; background: radial-gradient(circle at 50% 100%, rgba(228, 232, 229, 0.65), transparent 68%); }
.product-red-bg { position: absolute; right: 0; bottom: 0; left: 0; z-index: 1; height: 240px; background: var(--red); }
.section-head { display: flex; align-items: flex-start; justify-content: space-between; padding-bottom: 30px; }
.section-head h1 { color: #fff; }
.section-head h2 { margin: 0; padding: 2px 0 28px; color: #000; font-size: 39px; font-weight: 500; }
.section-head .more-button { margin-top: 18px; }
.product-viewport { width: 100%; overflow: hidden; }
.product-track { display: flex; width: 100%; transition: transform 0.55s ease; touch-action: pan-y; }
.product-page { display: grid; flex: 0 0 100%; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.product-card { height: 520px; overflow: hidden; border-radius: 9px; }
.product-card a { position: relative; display: block; width: 100%; height: 100%; overflow: hidden; }
.product-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.product-card a::after { position: absolute; right: 0; bottom: 0; left: 0; height: 42%; content: ""; background: linear-gradient(transparent, rgba(0, 0, 0, 0.72)); }
.product-card div { position: absolute; right: 0; bottom: 0; left: 0; z-index: 2; padding: 35px 16px; color: #fff; text-align: center; transition: background 0.45s ease, padding 0.45s ease; }
.product-card h3 { margin: 0; font-size: 25px; font-weight: 500; line-height: 1.45; }
.product-card p { margin: 2px 0 0; font-size: 14px; }
.product-card:hover img { transform: scale(1.06); }
.product-card:hover div { top: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 0; background: rgba(204, 2, 18, 0.62); }
.product-card.search-hit { outline: 5px solid #fff; outline-offset: -8px; }
.product-dots { position: relative; z-index: 4; display: flex; justify-content: center; gap: 6px; height: 42px; padding-top: 24px; }
.product-dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; background: rgba(255, 255, 255, 0.55); }
.product-dots button.active { background: #fff; }

.news-section { padding: 100px 0 145px; background: radial-gradient(circle at 100% 100%, rgba(204, 2, 18, 0.06), transparent 25%); }
.news-head h1 { color: var(--red); font-size: 20px; text-shadow: none; }
.news-layout { display: flex; height: 570px; margin-top: 26px; }
.news-main { width: 65%; }
.news-side { display: flex; width: 35%; flex-direction: column; gap: 24px; padding-left: 24px; }
.news-card { position: relative; width: 100%; height: 100%; overflow: hidden; }
.news-card a, .news-card img { display: block; width: 100%; height: 100%; }
.news-card img { object-fit: cover; transition: transform 0.45s ease; }
.news-card a::after { position: absolute; inset: 35% 0 0; content: ""; background: linear-gradient(transparent, rgba(0, 0, 0, 0.75)); }
.news-card div { position: absolute; right: 0; bottom: 0; left: 0; z-index: 2; padding: 5% 6%; color: #fff; }
.news-card p { margin: 0 0 7px; font-size: 14px; }
.news-card h3 { margin: 0; font-size: 24px; line-height: 1.4; }
.news-side .news-card { height: calc(50% - 12px); }
.news-side .news-card div { padding: 7% 5%; }
.news-side .news-card h3 { font-size: 18px; }
.news-card:hover img { transform: scale(1.06); }
.mobile-news { display: none; }

.footer { border-top: 5px solid var(--red); background: #fff; }
.foot { display: flex; justify-content: space-between; padding-top: 60px; padding-bottom: 74px; }
.footer-nav { display: flex; width: 60%; justify-content: space-between; }
.footer dl { margin: 0; }
.footer dt { margin-bottom: 15px; color: #333; font-size: 19px; font-weight: 500; line-height: 46px; }
.footer dd { margin: 0; color: #777; font-size: 14px; line-height: 28px; }
.footer dd a:hover { color: var(--red); }
.footer-contact { width: 33%; padding-left: 5%; }
.footer-contact h1 { margin: 3px 0 18px; color: var(--red); font-size: 28px; }
.footer-contact h1::before { margin-right: 8px; content: "⌕"; font-size: 23px; }
.footer-contact #contactContent { color: #777; font-size: 14px; line-height: 1.9; }
.footer-contact #contactContent p { margin: 0 0 6px; }
.footer-lang { display: block; width: 145px; margin-top: 18px; color: var(--red); border: 1px solid var(--red); border-radius: 22px; font-size: 13px; line-height: 34px; text-align: center; }
.footer-lang span { margin-left: 16px; }
.social-row { display: flex; justify-content: space-around; padding-bottom: 72px; }
.social-item { position: relative; width: 100px; text-align: center; }
.social-icon { width: 70px; height: 70px; margin: 0 auto; color: var(--red); border: 1px solid #fbeced; border-radius: 9px; font-size: 30px; line-height: 70px; }
.social-item p { margin: 9px 0 0; color: #777; font-size: 13px; }
.social-code { position: absolute; bottom: 105px; left: 50%; visibility: hidden; width: 140px; padding: 5px; background: #fff; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); opacity: 0; transform: translateX(-50%) rotateY(-90deg); transition: 0.3s ease; }
.social-code img { width: 100%; }
.social-item:hover .social-code { visibility: visible; opacity: 1; transform: translateX(-50%) rotateY(0); }
.copy { color: #aaa; font-size: 12px; }
.copy .wrap { display: flex; justify-content: space-between; padding: 24px 0 29px; border-top: 1px solid #fbeced; }
.back-top { position: fixed; right: 18px; bottom: 22px; z-index: 30; width: 46px; height: 46px; color: #fff; border: 0; border-radius: 50%; background: rgba(50, 50, 50, 0.55); font-size: 20px; opacity: 0; pointer-events: none; transition: opacity 0.2s ease; }
.back-top.visible { opacity: 1; pointer-events: auto; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

@media (max-width: 1440px) {
  .wrap { padding-right: 80px; padding-left: 80px; }
}

@media (max-width: 1280px) {
  .wrap { padding-right: 40px; padding-left: 40px; }
  .logo { width: 215px; }
  .header-right { width: 80%; padding-left: 50px; }
  .nav > ul > li > a { font-size: 14px; }
  .shop-link { flex-basis: 112px; }
  .product-card { height: 470px; }
}

@media (max-width: 1024px) {
  .header { padding: 18px 0 12px; }
  .logo { width: 165px; }
  .logo-symbol { flex-basis: 48px; width: 48px; height: 42px; }
  .logo-symbol::before { top: 6px; left: 13px; }
  .logo-symbol::after { top: 7px; left: 25px; }
  .logo-symbol i { left: 22px; }
  .logo strong { font-size: 14px; }
  .header-right { width: calc(100% - 190px); }
  .shop-link { display: none; }
  .cart-link { display: block; width: 38px; color: #555; font-size: 26px; text-align: center; }
  .banner { min-height: 410px; }
  .about { padding-top: 80px; padding-bottom: 60px; }
  .about-left h2 { font-size: 31px; }
  .about-right { font-size: 14px; line-height: 1.9; }
  .building { height: 380px; }
  .metrics { gap: 14px; }
  .metrics article { padding: 16px; }
  .metrics strong { font-size: 30px; }
  .product-card { height: 400px; }
  .news-layout { height: 430px; }
}

@media (max-width: 820px) {
  .header { padding: 15px 0; }
  .header.compact { padding: 15px 0; }
  .header-wrap { padding-right: 20px; padding-left: 20px; }
  .logo { width: 42%; max-width: 220px; }
  .logo-symbol { display: block; flex-basis: 42px; width: 42px; height: 36px; border-width: 2px; }
  .logo-symbol::before { top: 5px; left: 11px; width: 13px; height: 25px; }
  .logo-symbol::after { top: 6px; left: 22px; width: 11px; height: 24px; }
  .logo-symbol i { top: -6px; left: 19px; width: 4px; height: 9px; }
  .logo strong { font-size: 15px; }
  .header-right { width: auto; }
  .nav-trigger { position: relative; display: block; width: 40px; height: 40px; border: 0; background: transparent; }
  .nav-trigger span, .nav-trigger span::before, .nav-trigger span::after { position: absolute; left: 6px; width: 28px; height: 2px; content: ""; background: #333; transition: 0.3s ease; }
  .nav-trigger span { top: 19px; }
  .nav-trigger span::before { top: -9px; left: 0; }
  .nav-trigger span::after { top: 9px; left: 0; }
  .nav-open .nav-trigger span { background: transparent; }
  .nav-open .nav-trigger span::before { top: 0; transform: rotate(45deg); }
  .nav-open .nav-trigger span::after { top: 0; transform: rotate(-45deg); }
  .nav {
    position: fixed;
    top: 70px;
    right: 0;
    visibility: hidden;
    width: 80%;
    height: calc(100vh - 70px);
    padding: 20px 30px;
    overflow-y: auto;
    background: #fff;
    opacity: 0;
    transform: translateX(100%);
    transition: 0.3s ease;
  }
  .nav-open .nav { visibility: visible; opacity: 1; transform: none; }
  .nav > ul { display: block; }
  .nav > ul > li { border-bottom: 1px solid #eee; }
  .nav > ul > li > a { font-size: 16px; line-height: 52px; text-align: left; }
  .nav li ul { position: static; display: none; width: 100%; padding: 0 0 10px 18px; border-radius: 0; box-shadow: none; transform: none; }
  .nav li:hover ul { display: none; }
  .nav li.sub-open ul { display: block; }
  .nav li ul a { text-align: left; }
  .search-open { width: 40px; margin-left: 2px; }
  .cart-link { font-size: 22px; }
  .lang-link { height: 28px; padding: 0 11px; font-size: 13px; line-height: 28px; }
  .lang-link { order: 1; }
  .cart-link { order: 2; }
  .nav-trigger { order: 3; }
  .search-modal { height: 100%; padding-top: 145px; }
  .search-close { top: 88px; right: 14px; }
  .search-form { height: 48px; }
  .search-form button { width: 90px; }
  .search-categories { grid-template-columns: repeat(4, 1fr); }
  .banner { height: 52vw; min-height: 0; }
  .banner-copy { top: 22%; }
  .banner-copy p { font-size: 26px; }
  .banner-copy h1 { font-size: 37px; }
  .banner-copy div { font-size: 17px; }
  .about-left h1, .section-head h1 { font-size: 35px; }
  .metrics i { font-size: 30px; }
  .product-section { padding-top: 65px; }
  .product-card { height: 49vw; }
  .news-layout { height: 380px; }
  .foot { padding: 55px 40px; }
  .footer-nav { display: none; }
  .footer-contact { width: 100%; padding-left: 0; }
}

@media (max-width: 760px) {
  .wrap { padding-right: 20px; padding-left: 20px; }
  .search-open { display: none; }
  .banner { height: 74vw; min-height: 340px; }
  .banner-copy { top: 18%; right: 7%; left: 7%; text-align: left; }
  .banner-copy p { margin-bottom: 8px; font-size: 16px; }
  .banner-copy h1 { font-size: 26px; line-height: 1.35; }
  .banner-copy div { max-width: 290px; margin-top: 9px; font-size: 14px; line-height: 1.55; }
  .about-bg { padding-bottom: 48px; }
  .about { display: block; padding: 42px 20px; }
  .about-left, .about-right { width: 100%; padding-right: 0; }
  .about-left h1 { font-size: 31px; }
  .about-left h2 { margin: 6px 0 25px; font-size: 25px; line-height: 1.45; }
  .about-left .more-button { display: none; }
  .about-right p { font-size: 15px; line-height: 1.85; }
  .about-right p:nth-child(n+2) { display: none; }
  .about-right::after { display: block; width: 145px; height: 45px; margin-top: 24px; color: #fff; border-radius: 4px; background: var(--red); content: "查看更多　→"; font-size: 14px; line-height: 45px; text-align: center; }
  .building { width: 100%; height: 49vw; padding: 0; }
  .metric-wrap { padding-top: 24px; }
  .metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .metrics article { width: 100%; min-height: 90px; padding: 12px; }
  .metrics strong { font-size: 26px; }
  .metrics p { font-size: 11px; }
  .product-section { padding: 57px 0 18px; }
  .product-section::before { top: 100px; }
  .product-red-bg { height: 210px; }
  .section-head { padding-bottom: 18px; }
  .section-head h1 { font-size: 31px; }
  .section-head h2 { padding-bottom: 5px; font-size: 21px; line-height: 1.5; }
  .section-head .more-button { width: auto; height: 40px; margin-top: 32px; padding: 0 18px; font-size: 14px; line-height: 40px; }
  .section-head .more-button b { margin-left: 4px; }
  .desktop-only { display: none; }
  .product-page { grid-template-columns: 1fr 1fr; gap: 10px; }
  .product-card { height: 68vw; border-radius: 6px; }
  .product-card div { padding: 24px 8px; }
  .product-card h3 { font-size: 18px; }
  .product-card p { font-size: 11px; }
  .product-dots { height: 34px; padding-top: 18px; }
  .news-section { padding: 58px 20px 95px; }
  .news-section > .wrap { padding: 0; }
  .news-head h1 { font-size: 15px; }
  .news-layout { display: block; height: auto; margin-top: 18px; }
  .news-main { width: 100%; }
  .news-side { display: none; }
  .news-card, .news-side .news-card { height: 58vw; margin-bottom: 10px; }
  .mobile-news { display: block; }
  .news-card div { padding: 5%; }
  .news-card p { font-size: 12px; }
  .news-card h3 { font-size: 18px; }
  .footer { border-top-width: 4px; }
  .foot { padding: 38px 20px 25px; }
  .footer-contact h1 { margin-top: 0; font-size: 23px; }
  .footer-contact #contactContent { font-size: 13px; }
  .footer-lang { width: 130px; line-height: 30px; }
  .social-row { flex-wrap: wrap; padding: 5px 20px 32px; }
  .social-item { width: 25%; margin-bottom: 24px; }
  .social-icon { width: 50px; height: 50px; font-size: 22px; line-height: 50px; }
  .social-item p { font-size: 11px; }
  .copy .wrap { display: block; padding: 19px 20px 25px; font-size: 11px; line-height: 1.8; }
  .copy span { display: block; }
}

@media (max-width: 500px) {
  .header-wrap { padding-right: 10px; padding-left: 18px; }
  .logo { width: 45%; }
  .logo strong { font-size: 13px; }
  .logo small { font-size: 6px; }
  .cart-link { margin: 0 6px; }
  .banner-copy h1 { font-size: 23px; }
  .banner-copy div { font-size: 12px; }
  .product-card { height: 72vw; }
  .social-item { width: 33.333%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .banner-slide, .banner-slide img, .product-track, .product-card img, .news-card img { transition: none; }
}
