/* ===============================
   Pet Hero Section
================================ */
/* 全局基础 */
body {
  margin: 0;
  font-family: Inter, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.pet-hero{
  position: relative;
  width: 100%;
  height: 1020px;              /* 桌面高度，可调 */
  overflow: hidden;
  background: #000;
}

/* 背景图 */
.pet-hero-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 左下内容 */
.pet-hero-content{
  position: absolute;
  left: 12%;
  bottom: 4.5%;
  color: #fff;
  z-index: 2;
}

/* 标题 */
.pet-hero-title{
  font-size: clamp(72px, 3vw, 40px);
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: .5px;
  text-shadow: 0 4px 12px rgba(0,0,0,.35);
}
/* claw 图标 */
.pet-title-icon{
  width: 72px;              /* 👈 控制图标大小 */
  height: auto;
  flex-shrink: 0;
}

/* 只放大「它」 */
.pet-hero-em{
  font-size: 1.35em;   /* 👈 放大比例，推荐 1.25 ~ 1.45 */
  font-weight: 800;
  letter-spacing: 0.05em;
  display: inline-block;
}
/* CTA 按钮 */
.pet-hero-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 42px;
  border-radius: 999px;
  background: #3A9EF6;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(47,128,255,.45);
  transition: all .25s ease;
}

.pet-hero-cta:hover{
  background: #1f6fe0;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(47,128,255,.55);
}

/* ===============================
   响应式
================================ */

@media (max-width: 768px){
  .pet-hero{
    height: 420px;
  }

  .pet-hero-content{
    left: 5%;
    bottom: 12%;
  }

  .pet-hero-title{
    font-size: 24px;
  }

  .pet-hero-cta{
    font-size: 15px;
    padding: 10px 22px;
  }
}

/* ===============================
   Pet - 相关产品
=============================== */
.pet-products{
  background: #fff;
  padding: 56px 0 72px;
}

.pet-products-inner{
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

.pet-products-title{
  font-size: 36px;
  font-weight: 600;
  color: #3A9EF6;
  margin: 0 0 18px;
}

/* 桌面：两列 */
.pet-products-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.pet-product-card{
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: center;

  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
  padding: 24px;
  overflow: hidden;
}

.pet-product-media{
  width: 100%;
  height: 220px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,.05);
  overflow: hidden;
}

.pet-product-media img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.pet-product-name{
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 900;
  color: #111;
  line-height: 1.3;
}

.pet-product-desc{
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(0,0,0,.68);
}

.pet-product-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  color: #3A9EF6;
  background: rgba(22, 119, 255, 0.08);
  border: 1px solid rgba(22, 119, 255, 0.35);
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.35),
    0 8px 20px rgba(22,119,255,.18);
}

.pet-product-link:hover{
  transform: translateY(-2px);
  background: rgba(22, 119, 255, 0.14);
  border-color: rgba(22, 119, 255, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.45),
    0 12px 28px rgba(22,119,255,.28);
}

/* ========== 1200 以下 ========== */
@media (max-width: 1200px){
  .pet-products-grid{
    grid-template-columns: 1fr;
  }

  .pet-product-card{
    grid-template-columns: 240px minmax(0, 1fr);
  }
}

/* ========== 900 以下 ========== */
@media (max-width: 900px){
  .pet-products{
    padding: 44px 0 56px;
  }

  .pet-products-inner{
    padding: 0 18px;
  }

  .pet-products-title{
    font-size: 30px;
    margin-bottom: 16px;
  }

  .pet-product-card{
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 18px;
    padding: 18px;
  }

  .pet-product-media{
    height: 180px;
  }

  .pet-product-name{
    font-size: 20px;
  }

  .pet-product-desc{
    font-size: 14px;
  }
}

/* ========== 680 以下 ========== */
@media (max-width: 680px){
  .pet-product-card{
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }

  .pet-product-media{
    width: 100%;
    height: 220px;
  }

  .pet-product-name{
    font-size: 18px;
  }

  .pet-product-desc{
    font-size: 14px;
    line-height: 1.6;
  }

  .pet-product-link{
    min-height: 42px;
    font-size: 14px;
    padding: 0 18px;
  }
}

/* ========== 480 以下 ========== */
@media (max-width: 480px){
  .pet-products{
    padding: 36px 0 48px;
  }

  .pet-products-inner{
    padding: 0 14px;
  }

  .pet-products-title{
    font-size: 26px;
  }

  .pet-product-card{
    border-radius: 12px;
    padding: 14px;
  }

  .pet-product-media{
    height: 200px;
  }

  .pet-product-name{
    font-size: 17px;
  }

  .pet-product-desc{
    font-size: 13px;
    margin-bottom: 12px;
  }
}

/* ========== 375 以下 ========== */
@media (max-width: 375px){
  .pet-products-inner{
    padding: 0 12px;
  }

  .pet-product-card{
    padding: 12px;
  }

  .pet-product-media{
    height: 180px;
  }

  .pet-product-name{
    font-size: 16px;
  }

  .pet-product-link{
    width: 100%;
    justify-content: center;
  }
}