:root {
  --ink: #111111;
  --muted: #777777;
  --coral: #d33827;
  --coral-soft: #e07862;
  --sand: #f2f2f0;
  --mist: #ececec;
  --line: #e2e2e2;
  --dark: #0d0d0d;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  border: 0;
}

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

img[src$="hero-living.svg"] {
  content: url("../images/hero-dog.jpg");
}

img[src$="hero-bowl.svg"] {
  content: url("../images/hero-bowl.jpg");
}

img[src$="about-studio.svg"] {
  content: url("../images/pets-feeding.jpg");
}

img[src$="category-cat.svg"] {
  content: url("../images/cat-bowl.jpg");
}

img[src$="category-dog.svg"] {
  content: url("../images/hero-bowl.jpg");
}

img[src$="category-treat.svg"] {
  content: url("../images/hero-dog.jpg");
}

img[src$="category-care.svg"] {
  content: url("../images/pets-feeding.jpg");
}

img[src$="product-1.svg"],
img[src$="product-5.svg"] {
  content: url("../images/hero-bowl.jpg");
}

img[src$="product-2.svg"],
img[src$="product-6.svg"] {
  content: url("../images/cat-bowl.jpg");
}

img[src$="product-3.svg"] {
  content: url("../images/pets-feeding.jpg");
}

img[src$="product-4.svg"] {
  content: url("../images/hero-dog.jpg");
}

img[src$="news-1.svg"],
img[src$="news-4.svg"] {
  content: url("../images/hero-dog.jpg");
}

img[src$="news-2.svg"],
img[src$="news-5.svg"] {
  content: url("../images/hero-bowl.jpg");
}

img[src$="news-3.svg"] {
  content: url("../images/cat-bowl.jpg");
}

.container {
  width: min(1230px, calc(100% - 60px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  height: 100px;
  background: rgba(255, 255, 255, .96);
  transition: height .3s ease, box-shadow .3s ease;
}

.site-header.is-scrolled {
  height: 80px;
  box-shadow: 0 0 18px rgba(23, 37, 46, .16);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 3px;
  font-size: 24px;
  font-weight: 800;
}

.brand img {
  /*width: 72px;*/
  height: 48px;
  object-fit: contain;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--coral);
  letter-spacing: 4px;
  font-size: 9px;
  font-weight: 700;
}

.desktop-menu {
  display: flex;
  align-items: center;
  gap: 38px;
  height: 100%;
}

.menu-item {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

.menu-item>a {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.menu-item>a::after {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  height: 2px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transition: transform .25s ease;
}

.menu-item:hover>a,
.menu-item.is-active>a {
  color: var(--coral);
}

.menu-item:hover>a::after,
.menu-item.is-active>a::after {
  transform: scaleX(1);
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: -18px;
  display: grid;
  min-width: 170px;
  padding: 8px 0;
  background: var(--coral);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease;
}

.menu-item:hover .sub-menu,
.menu-item:focus-within .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sub-menu a {
  display: block;
  padding: 9px 18px;
  color: #fff;
  font-size: 14px;
}

.sub-menu a:hover {
  background: #1f2529;
}

.search-toggle,
.menu-toggle,
.drawer-close {
  display: grid;
  place-items: center;
  cursor: pointer;
  background: transparent;
}

.search-toggle {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  color: var(--ink);
}

.search-icon {
  display: block;
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.mobile-trigger {
  display: none;
}

.menu-toggle {
  width: 40px;
  height: 40px;
  background: #f3f2ee;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  content: "";
  transition: transform .3s ease;
}

.menu-toggle span::before {
  transform: translateY(-7px);
}

.menu-toggle span::after {
  transform: translateY(5px);
}

.mobile-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 40;
  width: min(300px, 82vw);
  padding: 42px 28px;
  overflow-y: auto;
  color: #fff;
  background: #222222;
  transform: translateX(-100%);
  transition: transform .35s ease;
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.mobile-drawer::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, .42);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}

.mobile-drawer.is-open::after {
  opacity: 1;
  pointer-events: auto;
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 3px;
}

.drawer-brand img {
  width: 72px;
  height: 48px;
  object-fit: contain;
}

.drawer-close {
  width: 36px;
  height: 36px;
  color: #fff;
  font-size: 28px;
}

.drawer-section {
  margin-top: 48px;
}

.drawer-section h3 {
  margin: 0 0 14px;
  color: #f0a08e;
  font-size: 18px;
}

.drawer-nav {
  display: grid;
  gap: 2px;
}

.drawer-nav a {
  display: block;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  font-size: 16px;
}

.drawer-nav a:hover {
  color: #f5c88e;
}

.drawer-subnav {
  display: grid;
  gap: 2px;
  padding: 2px 0 5px 16px;
}

.drawer-subnav a {
  border: 0;
  color: #bdbdbd;
  font-size: 13px;
}

.search-layer {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 30px;
  background: rgba(255, 253, 249, .98);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.search-layer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.search-form {
  position: relative;
  width: min(680px, 100%);
}

.search-form input {
  width: 100%;
  padding: 14px 50px 14px 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 30px;
}

.search-form button {
  position: absolute;
  right: 0;
  bottom: 10px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  cursor: pointer;
  background: var(--coral);
  color: #fff;
}

.search-form button .search-icon {
  width: 18px;
  height: 18px;
}

.footer-logo {
  width: 120px;
  height: 36px;
  margin-bottom: 18px;
  object-fit: contain;
  object-position: left center;
}

.search-close {
  position: absolute;
  top: 22px;
  right: 26px;
  cursor: pointer;
  background: transparent;
  color: var(--ink);
  font-size: 34px;
}

.hero {
  position: relative;
  margin-top: 100px;
  overflow: hidden;
  background: #b77a63;
}

.hero-track {
  display: flex;
  transition: transform .75s ease;
}

.hero-slide {
  position: relative;
  min-width: 100%;
  aspect-ratio: 1600 / 660;
}

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

.hero-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255, 255, 255, .48);
}

.hero-dot.is-active {
  background: #1472e4;
}

.section {
  padding: 76px 0;
}

.section-title {
  margin: 0;
  color: var(--ink);
  font-size: 32px;
  font-weight: 800;
}

.section-kicker {
  margin: 0 0 7px;
  color: var(--coral);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.section-intro {
  max-width: 720px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.section-head {
  position: relative;
  text-align: center;
}

.section-head::before {
  display: block;
  width: 58px;
  height: 18px;
  margin: 0 auto 12px;
  background:
    radial-gradient(circle at 16% 68%, rgba(211, 56, 39, .26) 0 4px, transparent 4.2px),
    radial-gradient(circle at 34% 32%, rgba(211, 56, 39, .18) 0 3px, transparent 3.2px),
    radial-gradient(circle at 50% 20%, rgba(211, 56, 39, .18) 0 3px, transparent 3.2px),
    radial-gradient(circle at 66% 32%, rgba(211, 56, 39, .18) 0 3px, transparent 3.2px),
    radial-gradient(circle at 82% 68%, rgba(211, 56, 39, .26) 0 4px, transparent 4.2px);
  content: "";
  animation: petTrail 5.6s ease-in-out infinite;
}

.section-head::after {
  display: block;
  width: 34px;
  height: 4px;
  margin: 18px auto 0;
  background: var(--coral);
  content: "";
}

.button {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 26px;
  border: 2px solid var(--coral);
  overflow: hidden;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(211, 56, 39, .08);
  transition: background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.button::after {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  content: "";
  opacity: .12;
  transition: transform .25s ease, opacity .25s ease;
}

.button:hover {
  background: var(--coral);
  color: #fff;
  transform: translateY(-3px) rotate(-.5deg);
  box-shadow: 0 16px 32px rgba(211, 56, 39, .18);
}

.button:hover::after {
  opacity: .24;
  transform: translate(-4px, 2px) scale(1.5);
}

.button.is-solid {
  background: var(--coral);
  color: #fff;
}

.about-section {
  padding: 76px 0 68px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  align-items: center;
}

.about-copy {
  max-width: 690px;
  padding-left: 5vw;
  padding-right: 55px;
}

.about-copy h2 {
  margin: 0;
  font-size: 32px;
}

.about-copy p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.about-copy .button {
  margin-top: 36px;
}

.about-media {
  overflow: hidden;
}

.about-media img {
  width: 100%;
  transition: transform .55s ease;
}

.about-media:hover img {
  transform: scale(1.04);
}

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

.category-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 345px;
  background: #eee;
}

.category-card:nth-child(1),
.category-card:nth-child(4) {
  background: var(--coral);
  color: #fff;
}

.category-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
}

.category-copy-inner {
  max-width: 220px;
}

.category-copy h3 {
  display: inline-block;
  margin: 0;
  border-bottom: 1px solid currentColor;
  font-size: 24px;
}

.category-copy p {
  margin: 36px 0;
  color: inherit;
  font-size: 15px;
  line-height: 1.8;
}

.category-card .button {
  min-height: 34px;
  padding: 0 17px;
  border-color: currentColor;
  font-size: 13px;
}

.category-card:nth-child(1) .button,
.category-card:nth-child(4) .button {
  color: #fff;
}

.category-card:nth-child(1) .button:hover,
.category-card:nth-child(4) .button:hover {
  background: #fff;
  color: var(--coral);
}

.category-media {
  overflow: hidden;
  background: #fff;
}

.category-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.category-media:hover img {
  transform: scale(1.07);
}

.products-section {
  padding: 74px 0 82px;
}

.product-scroller {
  position: relative;
  margin-top: 56px;
}

.product-track {
  display: grid;
  grid-auto-columns: calc((100% - 80px) / 3);
  grid-auto-flow: column;
  gap: 30px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.product-track::-webkit-scrollbar {
  display: none;
}

.product-card {
  overflow: hidden;
  background: #f4f4f1;
  transition: background .35s ease, transform .35s ease;
}

.product-card:hover {
  background: var(--coral);
  color: #fff;
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  aspect-ratio: 600 / 460;
  object-fit: cover;
}

.product-card h3 {
  margin: 0;
  padding: 20px 24px 26px;
  text-align: center;
  font-size: 20px;
}

.slider-arrow {
  position: absolute;
  top: 46%;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  background: #a4a4a4;
  color: #fff;
  font-size: 24px;
  transition: background .25s ease;
}

.slider-arrow:hover {
  background: var(--coral);
}

.slider-arrow:disabled {
  cursor: default;
  opacity: .32;
  pointer-events: none;
}

.product-scroller.is-static .slider-arrow {
  display: none;
}

.slider-arrow.is-prev {
  left: -21px;
}

.slider-arrow.is-next {
  right: -21px;
}

.section-action {
  margin-top: 48px;
  text-align: center;
}

.strength-section {
  position: relative;
  padding: 102px 0 74px;
  background: var(--dark);
  background-image: linear-gradient(rgba(13, 13, 13, .66), rgba(13, 13, 13, .78)), url("../images/pets-feeding.jpg");
  background-position: center top;
  background-size: cover;
}

.strength-section .section-title,
.strength-section .section-kicker {
  color: #fff;
}

.strength-section .section-head::before {
  background:
    radial-gradient(circle at 16% 68%, rgba(255, 255, 255, .34) 0 4px, transparent 4.2px),
    radial-gradient(circle at 34% 32%, rgba(255, 255, 255, .22) 0 3px, transparent 3.2px),
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, .22) 0 3px, transparent 3.2px),
    radial-gradient(circle at 66% 32%, rgba(255, 255, 255, .22) 0 3px, transparent 3.2px),
    radial-gradient(circle at 82% 68%, rgba(255, 255, 255, .34) 0 4px, transparent 4.2px);
}

.strength-section .section-intro {
  color: rgba(255, 255, 255, .78);
}

.strength-box {
  position: relative;
  margin-top: 42px;
  padding: 60px 34px 78px;
  background: rgba(255, 253, 249, .97);
  box-shadow: 0 0 16px rgba(0, 0, 0, .25);
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.strength-card {
  text-align: center;
}

.strength-icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font-size: 34px;
}

.strength-card h3 {
  margin: 28px 0 12px;
  font-size: 21px;
}

.strength-card p {
  margin: 0 auto;
  max-width: 255px;
  color: var(--muted);
  line-height: 1.8;
}

.news-section {
  padding: 86px 0 80px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 42px;
}

.news-card {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.news-card img {
  width: 100%;
  aspect-ratio: 800 / 520;
  object-fit: cover;
  transition: transform .5s ease;
}

.news-card:hover img {
  transform: scale(1.08);
}

.news-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 30px 24px 24px;
  background: linear-gradient(transparent, rgba(16, 23, 26, .94) 25%);
  color: #fff;
  opacity: 0;
  transition: opacity .3s ease;
}

.news-card:hover .news-overlay,
.news-card:focus-within .news-overlay {
  opacity: 1;
}

.news-overlay h3 {
  margin: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .45);
  font-size: 19px;
}

.news-overlay p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
}

.news-date {
  position: absolute;
  top: 0;
  right: 0;
  padding: 8px 13px;
  background: var(--coral);
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
}

.footer {
  color: #fff;
}

.footer-top {
  padding: 78px 0;
  background: #0d0d0d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr .85fr;
  gap: 50px;
}

.footer h2 {
  margin: 0 0 28px;
  font-size: 26px;
}

.footer p,
.footer li,
.footer a {
  color: #858b8c;
  font-size: 15px;
  line-height: 1.9;
}

.footer p {
  margin: 0;
}

.footer-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list strong {
  display: inline-block;
  width: 48px;
  color: #fff;
  font-weight: 500;
}

.footer a:hover {
  color: var(--coral);
}

.footer-cta {
  display: inline-flex;
  margin-top: 12px;
  padding: 2px 28px;
  background: var(--coral);
  color: #fff !important;
}

.footer-cta:hover {
  background: #fff;
}

.footer-entry-content {
  margin-top: 24px !important;
}

.footer-bottom {
  padding: 14px 0;
  background: #000;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  color: #fff;
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.inner-hero {
  position: relative;
  margin-top: 100px;
  padding: 84px 0 72px;
  overflow: hidden;
  background-color: var(--dark);
  background-image: linear-gradient(90deg, rgba(12, 12, 12, .84) 0%, rgba(12, 12, 12, .58) 48%, rgba(12, 12, 12, .28) 100%), url("../images/inner-cat-plant.jpg");
  background-position: center 48%;
  background-size: cover;
  color: #fff;
}

.inner-hero::before,
.inner-hero::after {
  display: none;
}

body[data-page="about"] .inner-hero,
body[data-page="company"] .inner-hero,
body[data-page="culture"] .inner-hero,
body[data-page="faq"] .inner-hero {
  background-image: linear-gradient(90deg, rgba(12, 12, 12, .84) 0%, rgba(12, 12, 12, .56) 48%, rgba(12, 12, 12, .22) 100%), url("../images/inner-cat-plant.jpg");
  background-position: center 48%;
}

body[data-page="products"] .inner-hero,
body[data-page="product-cat"] .inner-hero,
body[data-page="product-dog"] .inner-hero,
body[data-page="product-treat"] .inner-hero,
body[data-page="product-care"] .inner-hero,
body[data-page="product-detail"] .inner-hero {
  background-image: linear-gradient(90deg, rgba(12, 12, 12, .84) 0%, rgba(12, 12, 12, .58) 48%, rgba(12, 12, 12, .24) 100%), url("../images/inner-dog-table.jpg");
  background-position: center 42%;
}

body[data-page="news"] .inner-hero,
body[data-page="news-company"] .inner-hero,
body[data-page="news-trend"] .inner-hero,
body[data-page="news-detail"] .inner-hero,
body[data-page="contact"] .inner-hero {
  background-image: linear-gradient(90deg, rgba(12, 12, 12, .84) 0%, rgba(12, 12, 12, .58) 48%, rgba(12, 12, 12, .24) 100%), url("../images/inner-lucky-cat.jpg");
  background-position: center 46%;
}

.inner-hero-content {
  position: relative;
  z-index: 1;
}

.inner-hero h1 {
  margin: 0;
  font-size: clamp(32px, 5vw, 56px);
}

.breadcrumbs {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
}

.page-section {
  padding: 76px 0 90px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
  gap: 62px;
  align-items: start;
}

.article h2,
.article h3 {
  margin: 0 0 18px;
}

.article h2 {
  font-size: 31px;
}

.article h3 {
  margin-top: 38px;
  font-size: 22px;
}

.article p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 2;
}

.article-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.article-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.article-list li::before {
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.side-card {
  padding: 28px;
  background: var(--sand);
}

.side-card h3 {
  margin: 0 0 18px;
  font-size: 21px;
}

.side-nav {
  display: grid;
}

.side-nav a {
  padding: 11px 0;
  border-bottom: 1px solid rgba(23, 37, 46, .12);
  font-size: 15px;
}

.side-nav a:hover,
.side-nav a.is-current {
  color: var(--coral);
}

.content-image {
  width: 100%;
  margin: 0 0 30px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.catalog-card {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  overflow: hidden;
  background: var(--sand);
}

.catalog-card:nth-child(2n) {
  background: var(--mist);
}

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

.catalog-card-body {
  padding: 32px 28px;
}

.catalog-card-body h3 {
  margin: 0 0 14px;
  font-size: 22px;
}

.catalog-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.catalog-card-body .button {
  margin-top: 24px;
  min-height: 35px;
  padding: 0 17px;
  font-size: 13px;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 60px;
  align-items: start;
}

.detail-visual {
  background: var(--sand);
}

.detail-visual img {
  width: 100%;
}

.detail-copy h2 {
  margin: 0;
  font-size: 36px;
}

.detail-copy .eyebrow {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.detail-copy p {
  color: var(--muted);
  line-height: 1.9;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.spec {
  padding: 16px;
  background: var(--sand);
}

.spec strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.spec span {
  color: var(--muted);
  font-size: 14px;
}

.detail-page-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 214, 182, .18), transparent 28%),
    radial-gradient(circle at bottom left, rgba(255, 229, 188, .18), transparent 26%),
    linear-gradient(180deg, #fff9f4 0%, #fff 46%);
}

.detail-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: 34px;
  align-items: stretch;
}

.detail-stage::before,
.detail-stage::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.detail-stage::before {
  top: -42px;
  left: -16px;
  width: 128px;
  height: 128px;
  background: radial-gradient(circle, rgba(255, 186, 140, .2), rgba(255, 186, 140, 0));
  animation: pawFloat 7s ease-in-out infinite;
}

.detail-stage::after {
  right: 30px;
  bottom: -26px;
  width: 96px;
  height: 96px;
  background: radial-gradient(circle, rgba(211, 56, 39, .12), rgba(211, 56, 39, 0));
  animation: petSwing 6.8s ease-in-out infinite;
}

.detail-gallery,
.detail-summary-card,
.detail-params-card,
.detail-related-card {
  position: relative;
  border: 1px solid #eedfce;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 20px 40px rgba(53, 44, 32, .07);
}

.detail-gallery {
  padding: 18px;
}

.detail-gallery-window {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, #fff8f1 0%, #f6ede3 100%);
}

.detail-gallery-track {
  display: flex;
  transition: transform .55s ease;
}

.detail-gallery-slide {
  min-width: 100%;
  aspect-ratio: 1 / .92;
}

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

.detail-gallery-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(56, 41, 27, .12);
  animation: petTrail 5s ease-in-out infinite;
}

.detail-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255, 255, 255, .92);
  color: #303846;
  font-size: 28px;
  transform: translateY(-50%);
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.detail-gallery-arrow:hover {
  background: var(--coral);
  color: #fff;
  transform: translateY(-50%) scale(1.06);
}

.detail-gallery-arrow.is-prev {
  left: 18px;
}

.detail-gallery-arrow.is-next {
  right: 18px;
}

.detail-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.detail-gallery-thumb {
  padding: 0;
  border: 2px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.detail-gallery-thumb:hover,
.detail-gallery-thumb.is-active {
  border-color: #efc5b2;
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(56, 41, 27, .08);
}

.detail-gallery-thumb img {
  width: 100%;
  aspect-ratio: 1 / .82;
  object-fit: cover;
}

.detail-summary-card {
  padding: 38px 40px;
}

.detail-kicker {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.detail-summary-card h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.16;
}

.detail-mini {
  margin: 16px 0 0;
  color: #6f757c;
  font-size: 15px;
  line-height: 1.8;
}

.detail-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.detail-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 15px;
  border-radius: 999px;
  background: #fff2ea;
  color: #c74d34;
  font-size: 13px;
  font-weight: 700;
  transition: transform .25s ease, background .25s ease;
}

.detail-chip:hover {
  background: #ffe4d6;
  transform: translateY(-2px);
}

.detail-description {
  margin-top: 26px;
  color: #5d646e;
  font-size: 16px;
  line-height: 2;
}

.detail-note {
  position: relative;
  margin: 24px 0 0;
  padding: 18px 20px 18px 24px;
  background: linear-gradient(90deg, rgba(255, 241, 232, .86), rgba(255, 249, 244, .72));
  color: #676e76;
  line-height: 1.9;
}

.detail-note::before {
  position: absolute;
  top: 18px;
  left: 0;
  width: 4px;
  height: calc(100% - 36px);
  background: linear-gradient(180deg, #f08e6f, #d33827);
  content: "";
}

.detail-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

.detail-return {
  color: #45505e;
  font-size: 15px;
  font-weight: 700;
  transition: color .25s ease, transform .25s ease;
}

.detail-return:hover {
  color: var(--coral);
  transform: translateX(3px);
}

.detail-bottom-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 28px;
  margin-top: 34px;
  align-items: start;
}

.detail-params-card,
.detail-related-card {
  padding: 30px;
}

.detail-section-head {
  margin-bottom: 24px;
}

.detail-section-head .section-kicker {
  letter-spacing: 3px;
}

.detail-section-head .section-title {
  font-size: 28px;
}

.detail-param-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.detail-param-item {
  min-height: 132px;
  padding: 22px 20px;
  background: linear-gradient(180deg, #fff7f1 0%, #fff 100%);
  transition: transform .28s ease, box-shadow .28s ease;
}

.detail-param-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 28px rgba(53, 44, 32, .08);
}

.detail-param-item span {
  display: block;
  color: #c75c42;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.detail-param-item strong {
  display: block;
  margin-top: 16px;
  color: #26313b;
  font-size: 19px;
  line-height: 1.8;
}

.detail-richtext {
  margin-top: 22px;
  padding: 24px;
  background: #fffaf6;
  color: #636a73;
  line-height: 1.95;
}

.detail-richtext.is-standalone {
  margin-top: 0;
}

.detail-richtext p:first-child {
  margin-top: 0;
}

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

.detail-related-grid {
  display: grid;
  gap: 14px;
}

.detail-related-item {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 16px;
  padding: 12px;
  background: linear-gradient(180deg, #fff8f2 0%, #fff 100%);
  transition: transform .28s ease, box-shadow .28s ease;
}

.detail-related-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(53, 44, 32, .08);
}

.detail-related-media {
  display: block;
  overflow: hidden;
  background: #f7ebde;
}

.detail-related-media img {
  width: 100%;
  aspect-ratio: 1 / .9;
  object-fit: cover;
  transition: transform .45s ease;
}

.detail-related-item:hover .detail-related-media img {
  transform: scale(1.05) rotate(-1deg);
}

.detail-related-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.detail-related-copy strong {
  color: #232b33;
  font-size: 18px;
}

.detail-related-copy em {
  display: -webkit-box;
  margin-top: 8px;
  overflow: hidden;
  color: #707782;
  font-size: 13px;
  font-style: normal;
  line-height: 1.8;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.contact-rail {
  position: fixed;
  top: 50%;
  right: 20px;
  z-index: 36;
  display: grid;
  gap: 12px;
  transform: translateY(-50%);
}

.contact-rail__item {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 66px;
  height: 62px;
  padding: 0 18px 0 16px;
  border: 1px solid #ecdcc9;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 18px 32px rgba(39, 35, 27, .1);
  color: #26313c;
  cursor: pointer;
  transition: transform .28s ease, background .28s ease, color .28s ease, box-shadow .28s ease;
}

.contact-rail__item::after {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(211, 56, 39, .18);
  content: "";
  animation: petBlink 4.4s ease-in-out infinite;
}

.contact-rail__item:hover,
.contact-rail.is-panel-open .contact-rail__item.is-wechat {
  transform: translateX(-8px);
  background: var(--coral);
  box-shadow: 0 22px 38px rgba(211, 56, 39, .24);
  color: #fff;
}

.contact-rail__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.contact-rail__icon svg {
  width: 18px;
  height: 18px;
}

.contact-rail__copy {
  display: block;
  padding-left: 12px;
}

.contact-rail__label {
  display: block;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.contact-rail__meta {
  display: block;
  margin-top: 3px;
  color: #727984;
  font-size: 12px;
  white-space: nowrap;
  transition: color .28s ease;
}

.contact-rail__item:hover .contact-rail__meta,
.contact-rail.is-panel-open .contact-rail__item.is-wechat .contact-rail__meta {
  color: rgba(255, 255, 255, .84);
}

.contact-rail__panel {
  position: absolute;
  top: 50%;
  right: calc(100% + 14px);
  width: 196px;
  padding: 16px;
  border: 1px solid #ecdcc9;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 22px 36px rgba(39, 35, 27, .12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(14px) scale(.96);
  transition: opacity .28s ease, transform .28s ease;
}

.contact-rail.is-panel-open .contact-rail__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0) scale(1);
}

.contact-rail__qr img {
  width: 100%;
  aspect-ratio: 1;
}

.contact-rail__qr img {
  object-fit: cover;
  background: #fff6ef;
}

.contact-rail__panel p {
  margin: 12px 0 0;
  color: #29313a;
  font-size: 15px;
  font-weight: 800;
}

.contact-rail__note {
  display: block;
  margin-top: 6px;
  color: #747c85;
  font-size: 12px;
  line-height: 1.7;
}

.news-list {
  display: grid;
  gap: 28px;
}

.news-list-card {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 26px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.news-list-card img {
  width: 100%;
  aspect-ratio: 800 / 520;
  object-fit: cover;
}

.news-list-card h2 {
  margin: 4px 0 10px;
  font-size: 23px;
}

.news-list-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.news-meta {
  color: var(--coral);
  font-size: 13px;
  letter-spacing: 1px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  background: #fff;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 22px;
  cursor: pointer;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-size: 17px;
  font-weight: 700;
}

.faq-question::after {
  color: var(--coral);
  content: "+";
  font-size: 24px;
  font-weight: 400;
}

.faq-item.is-open .faq-question::after {
  content: "−";
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
  color: var(--muted);
  line-height: 1.9;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
}

.contact-info {
  display: grid;
  gap: 22px;
}

.contact-info h2 {
  margin: 0;
  font-size: 31px;
}

.contact-info p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.contact-line {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 15px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.contact-line strong {
  color: var(--ink);
}

.contact-line span {
  color: var(--muted);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.contact-form label:last-of-type,
.contact-form .button {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  outline: 0;
  background: #fff;
  color: var(--ink);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--coral);
}

.empty-note {
  padding: 38px;
  background: var(--sand);
  color: var(--muted);
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1230px) {
  .desktop-menu {
    gap: 24px;
  }

  .container {
    width: min(970px, calc(100% - 40px));
  }
}

@media (max-width: 1100px) {
  .site-header {
    height: 72px;
  }

  .site-header.is-scrolled {
    height: 72px;
  }

  .desktop-menu {
    display: none;
  }

  .mobile-trigger {
    display: block;
  }

  .hero {
    margin-top: 72px;
  }

  .inner-hero {
    margin-top: 72px;
  }

  .brand {
    font-size: 20px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .about-copy {
    padding-left: max(20px, calc((100vw - min(970px, calc(100% - 40px))) / 2));
    padding-right: 34px;
  }

  .product-track {
    grid-auto-columns: calc((100% - 30px) / 2);
  }
}

@media (max-width: 768px) {
  .container {
    width: calc(100% - 40px);
  }

  .section {
    padding: 54px 0;
  }

  .section-title {
    font-size: 26px;
  }

  .section-intro {
    font-size: 14px;
    line-height: 1.8;
  }

  .hero-slide {
    aspect-ratio: 900 / 900;
  }

  .about-section {
    padding: 20px 0 52px;
  }

  .about-grid,
  .two-column,
  .detail-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-copy {
    padding-left: 20px;
    padding-right: 0;
  }

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

  .about-copy p,
  .article p {
    font-size: 14px;
    line-height: 1.8;
  }

  .about-copy .button {
    margin-top: 24px;
  }

  .category-grid,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 280px;
  }

  .category-copy {
    padding: 20px 14px;
  }

  .category-copy h3 {
    font-size: 19px;
  }

  .category-copy p {
    margin: 22px 0;
    font-size: 13px;
  }

  .product-track {
    grid-auto-columns: 82%;
    gap: 18px;
  }

  .product-card h3 {
    padding: 16px 18px 20px;
    font-size: 17px;
  }

  .slider-arrow {
    top: 45%;
  }

  .slider-arrow.is-prev {
    left: -10px;
  }

  .slider-arrow.is-next {
    right: -10px;
  }

  .strength-section {
    padding: 58px 0 54px;
  }

  .strength-box {
    margin-top: 28px;
    padding: 28px 18px 32px;
  }

  .strength-grid,
  .news-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .strength-card h3 {
    margin: 18px 0 8px;
  }

  .strength-card p {
    font-size: 14px;
  }

  .news-section {
    padding: 56px 0;
  }

  .news-overlay {
    padding: 24px 20px 20px;
    opacity: 1;
  }

  .footer-top {
    padding: 48px 0;
  }

  .footer-grid,
  .footer-bottom .container {
    grid-template-columns: 1fr;
    display: grid;
    gap: 28px;
  }

  .footer h2 {
    margin-bottom: 16px;
    font-size: 22px;
  }

  .footer-bottom .container {
    gap: 8px;
  }

  .footer-links {
    gap: 14px;
  }

  .inner-hero {
    padding: 58px 0 50px;
  }

  .inner-hero h1 {
    font-size: 36px;
  }

  .page-section {
    padding: 52px 0 64px;
  }

  .article h2,
  .contact-info h2,
  .detail-copy h2 {
    font-size: 27px;
  }

  .catalog-card {
    grid-template-columns: 1fr;
  }

  .catalog-card img {
    aspect-ratio: 1.45;
  }

  .detail-copy .button {
    width: 100%;
  }

  .news-list-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .news-list-card h2 {
    font-size: 20px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form label:last-of-type,
  .contact-form .button {
    grid-column: auto;
  }

  .search-form input {
    font-size: 22px;
  }
}

.product-page-section {
  background:
    radial-gradient(circle at top left, rgba(236, 127, 98, .08), transparent 24%),
    linear-gradient(180deg, #f9f7f2 0%, #fff 32%);
}

.product-page-shell {
  display: grid;
  grid-template-columns: minmax(250px, 300px) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.product-sidebar {
  display: grid;
  gap: 26px;
}

.product-side-card {
  position: relative;
  overflow: hidden;
  padding: 26px 22px 18px;
  border: 1px solid #ece4d7;
  background: #fff;
  box-shadow: 0 18px 30px rgba(61, 50, 37, .05);
}

.product-side-card::after {
  position: absolute;
  top: -30px;
  right: -26px;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211, 56, 39, .12), rgba(211, 56, 39, 0));
  content: "";
  animation: pawFloat 5.8s ease-in-out infinite;
}

.product-side-head {
  position: relative;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #eee6da;
}

.product-side-head h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.product-side-nav {
  display: grid;
}

.product-side-nav a {
  position: relative;
  padding: 13px 0;
  border-bottom: 1px solid #eee6da;
  color: #2f3640;
  font-size: 15px;
  transition: color .25s ease, padding-left .25s ease;
}

.product-side-nav a::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
  opacity: 0;
  transform: translateY(-50%) scale(.4);
  transition: opacity .25s ease, transform .25s ease;
}

.product-side-nav a:hover,
.product-side-nav a.is-current {
  padding-left: 18px;
  color: var(--coral);
}

.product-side-nav a:hover::before,
.product-side-nav a.is-current::before {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.product-contact-list {
  display: grid;
  gap: 16px;
}

.product-contact-item {
  display: grid;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid #eee6da;
  color: #4c5563;
  font-size: 15px;
}

.product-contact-item strong {
  color: #1c2127;
  font-weight: 700;
}

.product-contact-item a:hover {
  color: var(--coral);
}

.product-page-main {
  min-width: 0;
}

.product-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 22px;
  border: 1px solid #ece4d7;
  background: #fff;
  box-shadow: 0 18px 30px rgba(61, 50, 37, .04);
}

.product-toolbar-copy h2 {
  margin: 4px 0 0;
  font-size: 28px;
}

.product-toolbar-copy p {
  margin: 10px 0 0;
  color: #6d7278;
  font-size: 14px;
  line-height: 1.8;
}

.product-toolbar-kicker {
  margin: 0;
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.product-toolbar-filter {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: #2a313a;
  font-size: 15px;
  white-space: nowrap;
}

.product-toolbar-filter select {
  min-width: 150px;
  padding: 10px 42px 10px 14px;
  border: 1px solid #d8dde5;
  outline: 0;
  background-color: #fff;
  background-image:
    linear-gradient(45deg, transparent 50%, #394555 50%),
    linear-gradient(135deg, #394555 50%, transparent 50%);
  background-position:
    calc(100% - 19px) calc(50% - 2px),
    calc(100% - 13px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  appearance: none;
  color: #28313d;
  cursor: pointer;
}

.product-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.product-panel-card {
  position: relative;
}

.product-panel-card-inner {
  position: relative;
  display: grid;
  height: 100%;
  gap: 12px;
  padding: 14px;
  border: 1px solid #e8dfd1;
  background: #fff;
  box-shadow: 0 14px 24px rgba(40, 43, 48, .03);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.product-panel-card-inner::before {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 40px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 191, 144, .18), rgba(236, 127, 98, .18));
  content: "";
  opacity: 0;
  transition: opacity .3s ease;
}

.product-panel-card:hover .product-panel-card-inner {
  transform: translateY(-6px);
  border-color: #e6d2bd;
  box-shadow: 0 20px 34px rgba(40, 43, 48, .1);
}

.product-panel-card:hover .product-panel-card-inner::before {
  opacity: 1;
}

.product-panel-card h3 {
  margin: 0;
  color: #d33827;
  font-size: 22px;
  font-weight: 700;
}

.product-panel-card p {
  display: -webkit-box;
  min-height: 44px;
  margin: 0;
  overflow: hidden;
  color: #69707b;
  font-size: 13px;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-panel-media {
  display: block;
  overflow: hidden;
  background: #f5efe4;
}

.product-panel-media img {
  width: 100%;
  aspect-ratio: 1 / .84;
  object-fit: cover;
  transition: transform .45s ease;
}

.product-panel-card:hover .product-panel-media img {
  transform: scale(1.05) rotate(-1deg);
}

.product-panel-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.product-panel-button,
.product-panel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  background: #3f4857;
  color: #fff;
  transition: background .25s ease, transform .25s ease;
}

.product-panel-button {
  flex: 1 1 auto;
  padding: 0 18px;
  font-size: 15px;
  font-weight: 700;
}

.product-panel-icon {
  width: 42px;
  flex: 0 0 42px;
}

.product-panel-icon svg {
  width: 19px;
  height: 19px;
}

.product-panel-button:hover,
.product-panel-icon:hover {
  background: var(--coral);
  transform: translateY(-2px);
}

.product-page-num {
  margin-top: 30px;
}

.product-page-num .pagination,
.product-page-num ul {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 0;
  list-style: none;
}

.product-page-num a,
.product-page-num span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid #e3dacb;
  background: #fff;
}

.product-page-num .active span,
.product-page-num a:hover {
  border-color: var(--coral);
  background: var(--coral);
  color: #fff;
}

@keyframes pawFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

@keyframes petTrail {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(-4px);
    opacity: .78;
  }
}

@keyframes petSwing {

  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(10px) rotate(8deg);
  }
}

@keyframes petBlink {

  0%,
  100% {
    transform: scale(1);
    opacity: .24;
  }

  50% {
    transform: scale(1.45);
    opacity: .42;
  }
}

@media (max-width: 1220px) {
  .product-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .product-page-shell {
    grid-template-columns: 1fr;
  }

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

  .product-page-main {
    order: 1;
  }

  .product-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .detail-stage,
  .detail-bottom-grid {
    grid-template-columns: 1fr;
  }

  .contact-rail {
    top: auto;
    right: 16px;
    bottom: 20px;
    transform: none;
  }

  .contact-rail__panel {
    top: auto;
    right: 0;
    bottom: calc(100% + 14px);
    transform: translateY(14px) scale(.96);
  }

  .contact-rail.is-panel-open .contact-rail__panel {
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 768px) {

  .detail-gallery,
  .detail-summary-card,
  .detail-params-card,
  .detail-related-card {
    padding: 16px;
  }

  .detail-summary-card {
    padding: 28px 22px;
  }

  .detail-gallery-window {
    border-radius: 20px;
  }

  .detail-gallery-slide {
    aspect-ratio: 1 / 1;
  }

  .detail-gallery-arrow {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .detail-gallery-arrow.is-prev {
    left: 12px;
  }

  .detail-gallery-arrow.is-next {
    right: 12px;
  }

  .detail-gallery-thumbs {
    gap: 10px;
  }

  .detail-actions {
    gap: 12px;
  }

  .detail-actions .button,
  .detail-return {
    width: 100%;
    justify-content: center;
  }

  .detail-param-grid,
  .detail-related-item {
    grid-template-columns: 1fr;
  }

  .detail-related-media img {
    aspect-ratio: 1.2;
  }

  .product-sidebar,
  .product-card-grid {
    grid-template-columns: 1fr;
  }

  .product-toolbar {
    padding: 16px;
  }

  .product-toolbar-copy h2 {
    font-size: 24px;
  }

  .product-toolbar-filter {
    width: 100%;
    justify-content: space-between;
  }

  .product-toolbar-filter select {
    min-width: 0;
    width: 100%;
  }

  .product-panel-card h3 {
    font-size: 20px;
  }

  .contact-rail {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .contact-rail__item {
    min-width: 0;
    justify-content: center;
    height: 54px;
    padding: 0 10px;
  }

  .contact-rail__copy {
    padding-left: 8px;
  }

  .contact-rail__label {
    font-size: 13px;
  }

  .contact-rail__meta {
    display: none;
  }

  .contact-rail__panel {
    left: 0;
    width: auto;
  }
}
