* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  background: #fff;
  overflow-y: scroll;
  scrollbar-gutter: stable;
}
body {
  font: 16px/1.65 "Roboto Slab", Georgia, serif;
  color: #252525;
  background: #fff;
  --font-accent-serif: "Roboto Slab", Georgia, serif;
  --accent-serif-color: #9b6a4d;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* 去除列表默认样式 */
  /* 去除默认的倾斜效果 */
  /* 去除超链接默认的样式 */
  /* 设置img的垂直对齐方式为居中对齐，去除img默认下间隙 */
  /* 去除input默认样式 */
}
body ul,
body ol {
  list-style: none;
}
body em,
body i {
  font-style: normal;
}
body a {
  text-decoration: none;
  color: #252525;
}
body img {
  width: 100%;
  height: 100%;
  vertical-align: middle;
}
body input {
  border: none;
  outline: none;
  color: #333;
}
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-family: var(--font-accent-serif);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}
.reveal-up {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  animation: none;
  will-change: opacity, transform;
}
.reveal-up.is-visible {
  animation: fadeUp 0.75s ease both;
}
.delay-1 {
  animation-delay: 0.08s;
}
.delay-2 {
  animation-delay: 0.16s;
}
.delay-3 {
  animation-delay: 0.24s;
}
.delay-4 {
  animation-delay: 0.32s;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.wrapper {
  width: calc(100% - 32px);
  max-width: 1240px;
  margin: 0 auto;
}
.content {
  margin-top: 250px;
  height: 2000px;
  display: flex;
}
.top-banner {
  top: 0;
  position: fixed;
  height: 27px;
  width: 100%;
  background-color: #ea8b2e;
  z-index: 999;
}
.shortcut {
  position: fixed;
  width: 100%;
  height: 48px;
  background-color: white;
  top: 27px;
  z-index: 999;
  border-bottom: solid 1px #e9d5d5;
}
.shortcut .short-flex {
  display: flex;
  position: relative;
}
.shortcut .short-flex a {
  line-height: 48px;
}
.shortcut .short-flex a:hover {
  color: orange;
}
.shortcut .short-flex div:nth-child(2) {
  flex: 1;
  position: absolute;
  right: 0;
}
.shortcut .short-flex div:nth-child(2) a {
  margin-left: 10px;
}
.shortcut .short-flex div:nth-child(2) :nth-child(1) {
  font-size: 20px;
  color: #ec3a38;
}
.shortcut .short-flex div:nth-child(2) :nth-child(2) {
  font-size: 20px;
  background-image: linear-gradient(to top right, #5b3d98, #9a3c98, #c3294f, #cb683c, #cea736);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.shortcut .short-flex div:nth-child(2) :nth-child(3) {
  font-size: 20px;
  color: #1da1f3;
}
.shortcut .short-flex div:nth-child(2) :nth-child(4) {
  font-size: 20px;
  color: #26d366;
}
.shortcut .short-flex div:nth-child(2) :nth-child(5) {
  font-size: 20px;
  background-image: linear-gradient(to top, #ff9900 0%, #ff9900 30%, black 31%, black 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.shortcut .short-flex div:nth-child(2) :nth-child(6) {
  font-size: 20px;
  color: #3b5998;
}
.shortcut .short-flex div:nth-child(2) :nth-child(7) {
  font-size: 20px;
  color: #007fb1;
}
.shortcut .short-flex div:nth-child(2) :nth-child(8) {
  font-size: 20px;
  color: #cc2127;
}
.header-box {
  position: fixed;
  top: 75px;
  width: 100%;
  background-color: white;
  z-index: 999;
}
.header-box .header {
  position: relative;
  display: flex;
  height: 88px;
  top: 0;
}
.header-box .header .logo {
  width: 250px;
  height: 88px;
}
.header-box .header .logo a {
  display: block;
  width: 250px;
  height: 88px;
  background-image: url(../img/logo.png);
  background-repeat: no-repeat;
  font-size: 0;
}
.header-box .header .nav {
  position: absolute;
  right: 0;
  width: 640px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
}
.header-box .header .nav ul {
  width: 640px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
}
.header-box .header .nav ul li {
  margin-left: 0;
}
.header-box .header .nav ul li a:hover,
.header-box .header .nav ul li a.active {
  color: orange;
}
.header-box .header .nav ul li a {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  color: #1d1d1f;
}
.header-box .header .nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: orange;
  transition: width 0.25s ease;
}
.header-box .header .nav ul li a:hover::after,
.header-box .header .nav ul li a.active::after {
  width: 100%;
}
.bgd {
  position: fixed;
  top: 0;
  width: 100%;
  height: 1080px;
  background-color: #f7f3ec;
  background-repeat: repeat;
  background-size: 480px auto;
  opacity: 0.28;
  pointer-events: none;
  background-image: url(../img/bgi2.png);
  z-index: 0;
}
.bgd-solve {
  position: relative;
  z-index: 1;
}
.footer {
  margin-top: 100px;
  height: 520px;
  background-color: #231816;
  width: 100%;
}
.footer .subscribe {
  color: white;
  display: flex;
  height: 170px;
  justify-content: space-between;
  align-items: center;
}
.footer .subscribe div:nth-child(1) span {
  display: block;
  font-weight: 600;
}
.footer .subscribe div:nth-child(1) span:nth-child(1) {
  font-size: 32px;
  line-height: 1.15;
}
.footer .subscribe div:nth-child(1) span:nth-child(2) {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.72);
}
.footer .subscribe div:nth-child(2) {
  display: flex;
}
.footer .subscribe div:nth-child(2) input {
  width: 500px;
  height: 45px;
  font-size: 15px;
  padding-left: 20px;
}
.footer .subscribe div:nth-child(2) ::-webkit-input-placeholder {
  font-size: 15px;
}
.footer .subscribe div:nth-child(2) .subButton {
  width: 100px;
  height: 45px;
  background-color: #ea8b2e;
  cursor: pointer;
}
.footer .subscribe div:nth-child(2) .subButton span {
  display: block;
  width: 100px;
  text-align: center;
  line-height: 45px;
  font-size: 15px;
}
.footer .contact-list {
  display: flex;
  height: 350px;
}
.footer .contact-list .footer-contact {
  height: 350px;
  width: 400px;
}
.footer .contact-list .footer-contact div:nth-child(1) {
  width: 250px;
  height: 80px;
  background: url(../img/logo.png) no-repeat center center;
}
.footer .contact-list .footer-contact div:nth-child(2) {
  margin-top: 30px;
}
.footer .contact-list .footer-contact div:nth-child(2) p {
  font-weight: 500;
  margin-top: 5px;
  color: white;
}
.footer .contact-list .footer-contact div:nth-child(2) p a {
  color: #cea736;
}
.footer .contact-list .footer-nav {
  margin-top: 100px;
  flex: 1;
  margin-left: 200px;
  display: flex;
  justify-content: space-evenly;
}
.footer .contact-list .footer-nav dl {
  color: white;
}
.footer .contact-list .footer-nav dl dt {
  font-weight: 600;
}
.footer .contact-list .footer-nav dl a {
  color: white;
}
.footer .contact-list .footer-nav dl dd {
  margin-top: 10px;
}
.footer .contact-list .footer-nav dl dd:nth-child(2) {
  margin-top: 20px;
}
.copyright {
  width: 100%;
  height: 30px;
  background-color: #322220;
}
.copyright .wrapper {
  position: relative;
}
.copyright .wrapper span {
  color: white;
  position: absolute;
  right: 0;
}
.content {
  margin-top: 250px;
  height: 2000px;
  display: flex;
}
.content .left {
  width: 310px;
  height: 100%;
}
.content .left > div {
  width: 250px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: orange;
  border-radius: 10px 10px;
  margin: 0 auto;
  border-bottom: solid 5px #e3e3e3;
  font-weight: 600;
  color: white;
}
.content .left > ul {
  width: 250px;
  height: 250px;
  background-color: #f9f9f9;
  margin: 0 auto;
  position: relative;
  margin-top: 20px;
}
.content .left > ul li > div {
  width: 250px;
  height: 40px;
  display: flex;
  line-height: 35px;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  margin-top: 5px;
  border-top: #e1e1e1 solid 1px;
  border-bottom: #e1e1e1 solid 1px;
}
.content .left > ul li > div:hover {
  color: orange;
  background-color: #e3e3e3;
}
.content .left > ul li > div > strong:nth-child(1) {
  margin-left: 20px;
}
.content .left > ul li > div > .iconfont {
  position: absolute;
  right: 20px;
  color: black;
  transform: rotate(180deg);
  font-size: 5px;
  font-weight: 600;
}
.content .left > ul > li > ul > span {
  display: inline-block;
  width: 220px;
  margin-left: 30px;
  margin-top: 5px;
  cursor: pointer;
}
.content .left > ul > li > ul > span:hover {
  color: orange;
}
.content .right {
  margin-left: 30px;
  width: 900px;
  height: 100%;
}
.content .right > .pro_list {
  display: flex;
  flex-wrap: wrap;
}
.content .right > .pro_list > .products {
  width: 195px;
  height: 225;
  margin-left: 40px;
  overflow: hidden;
}
.content .right > .pro_list > .products div {
  height: 195px;
  width: 195px;
  overflow: hidden;
}
.content .right > .pro_list > .products div img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: 0.5s;
}
.content .right > .pro_list > .products div img:hover {
  transform: scale(1.2);
}
.content .right > .pro_list > .products span {
  width: 195px;
  display: block;
  cursor: pointer;
  margin-top: 10px;
  text-align: center;
  color: var(--accent-serif-color);
  font-family: var(--font-accent-serif);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  -webkit-text-stroke: 0.15px currentColor;
  text-shadow: 0.01em 0 0 currentColor;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-wrap: break-word;
}
.content .right > .pro_list > .products span:hover {
  color: orange;
  text-decoration: underline;
}
.content .right > .pro_list > div:nth-child(4n+1) {
  margin-left: 0;
}
.content .right > .pro_list > div:nth-child(n+4) {
  margin-top: 10px;
}
.content .right > .pro_list::after {
  content: "";
  flex: auto;
}
.content .right .page {
  margin-top: 50px;
}
.content .right .page .pageNum {
  width: 900px;
  overflow: hidden;
}
.content .right .page .pageNum ul {
  width: 900px;
  text-align: center;
}
.content .right .page .pageNum ul li {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 1px solid #eee;
  margin-right: 10px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
}


.content .right .page .pageNum ul li a {
  width: 100%;
  height: 100%;
  color: #000;
  font-size: 14px;
}

.content .right .page .pageNum ul .hoPage {
  background-color: orange;
}

.content .right .page .pageNum ul .curPage {
  background-color: orange;
}

.content .right .page .pageNum ul .threeword {
  width: 75px;
}

.products-page {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: flex-start;
  align-content: start;
  gap: 38px;
  height: auto;
  min-height: 900px;
  margin-top: 230px;
  padding-bottom: 110px;
}

.products-page .reveal-up {
  opacity: 1 !important;
  transform: none !important;
}

.products-page .left {
  width: auto;
  height: auto;
}

.products-page .sidebar {
  border: 1px solid #e8e3df;
  border-top: 4px solid #ea8b2e;
  border-radius: 0;
  padding: 24px;
  align-self: start;
  background: linear-gradient(180deg, #fff, #fbfaf8);
  box-shadow: 0 18px 40px rgba(37, 37, 37, 0.07);
  position: sticky;
  top: 104px;
}

.products-page .sidebar input {
  width: 100%;
  min-height: 46px;
  border: 1px solid #e8e3df;
  border-radius: 0;
  padding: 12px 15px;
  font: inherit;
  background: #fff;
  color: #252525;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.products-page .sidebar input::placeholder {
  color: #7f7a75;
}

.products-page .sidebar input:focus {
  border-color: rgba(234, 139, 46, 0.45);
  box-shadow: 0 0 0 3px rgba(234, 139, 46, 0.1);
}

.products-page .sidebar h3 {
  margin: 24px 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e8e3df;
  color: #252525;
  font-family: var(--font-accent-serif);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.products-page .sidebar ul {
  display: grid;
  gap: 8px;
  width: 100%;
  height: auto;
  list-style: none;
  padding: 0;
  margin: 0;
  background: transparent;
}

.products-page .category-button {
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid transparent;
  padding: 10px 12px;
  border-radius: 0;
  background: transparent;
  color: #7a746f;
  font: inherit;
  letter-spacing: 0;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, border 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.products-page .category-button span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.products-page .category-button small {
  min-width: 30px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  padding: 0 8px;
  border-radius: 999px;
  background: #f7f5f3;
  color: #9b6a4d;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease;
}

.products-page .category-button:hover,
.products-page .category-button.active {
  background: #fff;
  border-color: rgba(234, 139, 46, 0.26);
  color: #9b6a4d;
  transform: translateX(3px);
}

.products-page .category-button.active {
  box-shadow: inset 3px 0 0 #ea8b2e, 0 8px 18px rgba(143, 103, 72, 0.08);
  font-weight: 800;
}

.products-page .category-button:hover small,
.products-page .category-button.active small {
  background: #ea8b2e;
  color: #fff;
}

.products-page .right {
  flex: 1;
  width: auto;
  height: auto;
  margin-left: 0;
}

.product-page-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.product-page-head > span {
  color: #7d675b;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.product-page-head h2 {
  margin-top: 6px;
  color: #252525;
  font-family: var(--font-accent-serif);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
  -webkit-text-stroke: 0.16px currentColor;
  text-shadow: 0.012em 0 0 currentColor;
}

.product-page-head .liner {
  width: 88px;
  height: 11px;
  margin-top: 12px;
  background-image: url("../img/divider.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.products-page .right > .pro_list {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.products-page .right > .pro_list > .products {
  display: block;
  width: 100%;
  height: auto;
  min-height: 332px;
  margin-left: 0;
  padding: 18px 18px 20px;
  overflow: hidden;
  border: 1px solid rgba(155, 106, 77, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 45px rgba(52, 36, 30, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  touch-action: manipulation;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
}

.products-page .right > .pro_list > .products div.product-image {
  width: 100%;
  height: 232px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fbf8f5;
  border-radius: 6px;
  touch-action: pan-y;
}

.products-page .right > .pro_list > .products div.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.36s ease;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  user-select: none;
}

.products-page .right > .pro_list > .products:hover div.product-image img {
  transform: scale(1.08);
}

@media (pointer: coarse), (hover: none) {
  .reveal-up {
    will-change: auto;
    animation: none !important;
    transform: none;
    opacity: 1;
  }
  .content .right > .pro_list > .products div img {
    -webkit-transition: none;
    transition: none;
    cursor: auto;
  }
  .content .right > .pro_list > .products div img:hover {
    transform: none;
  }
  .products-page .right > .pro_list > .products {
    -webkit-transition: none;
    transition: none;
    touch-action: pan-y;
  }
  .products-page .right > .pro_list > .products div.product-image {
    overflow: visible;
  }
  .products-page .right > .pro_list > .products div.product-image img {
    -webkit-transition: none;
    transition: none;
    touch-action: pan-y;
  }
  .products-page .right > .pro_list > .products:hover div.product-image img {
    transform: none;
  }
}

.products-page .right > .pro_list > .products .product-type {
  margin-top: 16px;
  color: #ea8b2e;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.products-page .right > .pro_list > .products span {
  width: 100%;
  margin-top: 12px;
  color: #2f2a27;
  font-family: var(--font-accent-serif);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
  text-align: left;
  -webkit-line-clamp: 3;
  -webkit-text-stroke: 0.14px currentColor;
  text-shadow: 0.01em 0 0 currentColor;
}

.products-page .right > .pro_list > .products span:hover {
  color: #2f2a27;
  text-decoration: none;
}

.products-page .right > .pro_list > .products .product-material {
  margin-top: 12px;
  color: #6e6e6e;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  text-align: left;
}

.products-page .right > .pro_list > div:nth-child(4n+1),
.products-page .right > .pro_list > div:nth-child(n+4) {
  margin: 0;
}

.products-page .right > .pro_list::after {
  content: none;
}

.product-empty {
  grid-column: 1 / -1;
  padding: 60px 20px;
  border: 1px solid rgba(155, 106, 77, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  color: #75645d;
  font-size: 16px;
  text-align: center;
}

.products-page .right .page {
  margin-top: 42px;
}

.products-page .right .page .pageNum,
.products-page .right .page .pageNum ul {
  width: 100%;
}

.products-page .right .page .pageNum ul li {
  width: 42px;
  height: 42px;
  margin-right: 8px;
  border: 1px solid rgba(234, 139, 46, 0.22);
  border-radius: 6px;
  background: #fff;
  line-height: 42px;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.products-page .right .page .pageNum ul li button {
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  color: #ea8b2e;
  cursor: pointer;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 15px;
  font-weight: 700;
}

.products-page .right .page .pageNum ul .threeword {
  width: 78px;
}

.products-page .right .page .pageNum ul .is-disabled {
  opacity: 0.48;
}

.products-page .right .page .pageNum ul .is-disabled:hover {
  background: #fff;
  border-color: rgba(234, 139, 46, 0.22);
  transform: none;
}

.products-page .right .page .pageNum ul .is-disabled button {
  cursor: not-allowed;
}

.products-page .right .page .pageNum ul li:hover button,
.products-page .right .page .pageNum ul .curPage button {
  color: #fff;
}

.products-page .right .page .pageNum ul li:hover,
.products-page .right .page .pageNum ul .curPage {
  transform: translateY(-1px);
}

.products-page .right .page .pageNum ul li:hover {
  background: #f5b45d;
  border-color: #f5b45d;
}

.products-page .right .page .pageNum ul .curPage {
  background: #ea8b2e;
  border-color: #ea8b2e;
}

@keyframes skeletonPulse {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}

.products-loading-shell {
  display: none;
}

body.page-loading .products-page > :not(.products-loading-shell) {
  display: none;
}

body.page-loading .products-loading-shell {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 38px;
  width: 100%;
  align-items: start;
}

.skeleton-line,
.skeleton-media {
  display: block;
  border-radius: 6px;
  background: linear-gradient(90deg, #f3efe9 0%, #fbf8f4 50%, #f3efe9 100%);
  background-size: 220% 100%;
  animation: skeletonPulse 1.25s ease-in-out infinite;
}

.products-skeleton-sidebar,
.products-skeleton-main {
  border: 1px solid rgba(155, 106, 77, 0.14);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(37, 37, 37, 0.06);
}

.products-skeleton-sidebar {
  padding: 24px;
}

.products-skeleton-main {
  min-width: 0;
  padding: 6px 0 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.skeleton-input {
  width: 100%;
  height: 48px;
}

.skeleton-button {
  width: 100%;
  height: 44px;
  margin-top: 14px;
}

.skeleton-heading {
  width: 120px;
  height: 24px;
  margin-top: 28px;
}

.products-skeleton-categories {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.skeleton-category {
  width: 100%;
  height: 44px;
}

.products-skeleton-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
}

.skeleton-kicker {
  width: 140px;
  height: 14px;
}

.skeleton-title {
  width: 240px;
  height: 42px;
}

.skeleton-divider {
  width: 96px;
  height: 10px;
}

.products-skeleton-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  min-width: 0;
}

.product-skeleton-card {
  min-width: 0;
  border: 1px solid rgba(155, 106, 77, 0.14);
  background: rgba(255, 255, 255, 0.88);
  padding: 18px;
}

.skeleton-media {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.skeleton-meta {
  width: 38%;
  height: 12px;
  margin-top: 18px;
}

.skeleton-card-title {
  width: 82%;
  height: 22px;
  margin-top: 12px;
}

.skeleton-copy {
  width: 100%;
  height: 14px;
  margin-top: 12px;
}

.skeleton-copy.short {
  width: 70%;
}

.products-skeleton-pager {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 42px;
}

.skeleton-page {
  width: 42px;
  height: 42px;
}

.skeleton-page.wide {
  width: 82px;
}

@media (max-width: 900px) {
  .products-page {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 108px;
    padding-bottom: 72px;
  }

  .products-page .sidebar {
    position: static;
    top: auto;
  }

  .product-page-head {
    align-items: flex-start;
    margin-bottom: 10px;
  }

  .product-page-head h2 {
    font-size: 40px;
    line-height: 1.02;
  }

  .products-page .right > .pro_list {
    margin-top: 24px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .products-page .right > .pro_list > .products {
    min-height: 0;
    padding: 16px;
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
  }

  .products-page .right > .pro_list > .products div.product-image {
    height: 180px;
  }

  .products-page .right > .pro_list > .products .product-type {
    margin-top: 0;
  }

  .products-page .right > .pro_list > .products span {
    display: block;
    margin-top: 10px;
    -webkit-line-clamp: unset;
  }

  .products-page .right > .pro_list > .products .product-material {
    margin-top: 10px;
  }

  body.page-loading .products-loading-shell {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .products-skeleton-grid {
    grid-template-columns: 1fr;
  }

  .product-skeleton-card {
    min-height: 220px;
  }
}

@media (max-width: 600px) {
  .products-page {
    margin-top: 92px;
    gap: 0;
    min-height: 0;
    padding-bottom: 56px;
  }

  .products-page .sidebar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    padding: 14px;
    border-top-width: 3px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(37, 37, 37, 0.06);
    overflow: hidden;
  }

  .products-page .sidebar input {
    min-height: 42px;
    padding: 9px 12px;
    font-size: 15px;
  }

  .products-page .sidebar #productSearchBtn {
    width: auto;
    min-width: 82px;
    min-height: 42px;
    justify-content: center;
    padding: 9px 12px;
    border-color: rgba(234, 139, 46, 0.32);
    background: #ea8b2e;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    transform: none;
    box-shadow: none;
  }

  .products-page .sidebar h3 {
    display: none;
  }

  .products-page .sidebar ul {
    grid-column: 1 / -1;
    display: flex;
    gap: 8px;
    width: 100%;
    overflow-x: auto;
    padding: 2px 0 4px;
    margin-top: 2px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .products-page .sidebar ul::-webkit-scrollbar {
    display: none;
  }

  .products-page .sidebar ul li {
    flex: 0 0 auto;
  }

  .products-page .sidebar .category-button {
    width: auto;
    height: 38px;
    min-height: 38px;
    gap: 8px;
    padding: 0 10px;
    border-color: rgba(155, 106, 77, 0.14);
    background: #fff;
    font-size: 13px;
    line-height: 1;
    white-space: nowrap;
    transform: none;
    box-shadow: none;
  }

  .products-page .sidebar .category-button span {
    display: inline-flex;
    align-items: center;
    height: 100%;
    line-height: 1;
  }

  .products-page .sidebar .category-button:hover,
  .products-page .sidebar .category-button.active {
    border-color: rgba(234, 139, 46, 0.35);
    background: #fff7ef;
    color: #9b6a4d;
    transform: none;
    box-shadow: none;
  }

  .products-page .sidebar .category-button.active {
    font-weight: 800;
  }

  .products-page .sidebar .category-button small {
    min-width: 24px;
    height: 20px;
    display: inline-grid;
    place-items: center;
    padding: 0 6px;
    font-size: 11px;
    line-height: 1;
  }

  .products-page .sidebar .category-button.active small,
  .products-page .sidebar .category-button:hover small {
    background: #ea8b2e;
    color: #fff;
  }

  .product-page-head > span {
    font-size: 13px;
  }

  .product-page-head {
    margin-top: 0;
    margin-bottom: 4px;
  }

  .product-page-head h2 {
    margin-top: 4px;
    font-size: 32px;
  }

  .products-page .right > .pro_list {
    margin-top: 10px;
    gap: 14px;
  }

  .products-page .right > .pro_list > .products {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px;
  }

  .products-page .right > .pro_list > .products div.product-image {
    height: 240px;
  }

  .products-page .right > .pro_list > .products .product-type {
    font-size: 10px;
  }

  .products-page .right > .pro_list > .products span {
    font-size: 22px;
    line-height: 1.18;
  }

  .products-page .right > .pro_list > .products .product-material {
    font-size: 15px;
    line-height: 1.55;
  }

  .products-page .right .page {
    margin-top: 28px;
  }

  .products-page .right .page .pageNum ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }
}
