.banner-wrapper {
    width: 100%;
    /* padding: 0 3%; */
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.banner-wrapper .long-banner {
    width: 100%;
    height: 400px;
    position: relative;
}

/* .banner-wrapper .long-banner::before {
    content: '';
    position: absolute;
    background: #000;
    opacity: 0.2;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
} */

.banner-wrapper .long-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-wrapper .long-banner .long-banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.banner-wrapper .long-banner .long-banner-content .long-banner-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 50px;
    font-weight: 600;
    text-align: center;
    z-index: 2;
    line-height: 1.2;
}

.banner-wrapper .one-banner{
  padding: 0 5%;
  width: 100%;
  height: 300px;
  position: relative;
}

.banner-wrapper .one-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-wrapper .two-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 5%;
}

.two-banner-item {
    width: 50%;
    height: 100%;
}

.two-banner-item a {
    display: inline-block;
    overflow: hidden;
    width: 100%;
}

 .two-banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s ease-in-out;
}

.two-banner-item a:hover img {
    transform: scale(1.05);
}

.qodef-m-filter h5 {
  text-align: center;
  font-size: 50px;
  font-weight: 800;
  margin: 0;
  letter-spacing: 5px;
  color: #162d56;
}

.product-container{
  padding: 0 5%;
  width: 100%;
}
.sec-two-banner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.sec-two-banner .two-banner-item a{
  border-radius: 30px;
  overflow: hidden;
}
.sec-two-banner .two-banner-item img{
  border-radius: 30px;
  overflow: hidden;
}
.pro-btn{
  display: flex;
  justify-content: center;
}
.pro-btn .qodef-html--link{
  padding: 10px 50px 10px 60px;
  border-radius: 30px;
}
.trd-two-banner .two-banner-item a{
  border-radius: 10px;
  overflow: hidden;
}
.trd-two-banner .two-banner-item img{
  border-radius: 10px;
  overflow: hidden;
}

.cat-intro-section {
  background-color: #f9f1e5;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  margin: 0 5%;
}


.cat-intro-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #bfdde7 0%, #abccd8 50%, #cae1e9 100%);
}

.cat-intro-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
}

.cat-paw-icon{
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-paw-icon svg {
  width: 50px;
  height: 50px;
  fill: #abccd8;
}

.cat-intro-title {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #162d56;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-intro-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #abccd8 50%, transparent 100%);
}

.cat-intro-text p {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #5d4037;
  margin-bottom: 15px;
}

.cat-divider {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.cat-divider .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #abccd8;
  opacity: 0.6;
}

@media (min-width: 768px) {
  .cat-intro-title {
      font-size: 32px;
  }
  
  .cat-intro-text p {
      font-size: 18px;
  }
}

.series-section{
  margin: 50px 0 10px 0;
}

.series-section .elementor-widget-container{
  padding: 0 !important;
}

.series-section .cat-intro-title{
  margin-bottom: 50px;
}


.blog-container{
  width: 100%;
  padding: 0 5%;
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin: 40px 0;
}
.blog-row {
  display: flex;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  overflow: hidden;
  transition: box-shadow 0.2s;
  align-items: stretch;
}
.blog-row:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.16);
}
.blog-img-box {
  flex: 0 0 40%;
  max-width: 40%;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #f6f6f6;
}
.blog-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 100%;
  transition: transform 0.3s;
  border-radius: 0;
}
.blog-row:hover .blog-img-box img {
  transform: scale(1.04);
}
.blog-content-box {
  flex: 1 1 0;
  padding: 32px 32px 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-title {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #222;
  line-height: 1.3;
}
.blog-date {
  font-size: 1rem;
  color: #162d56;
  margin-bottom: 10px;
  font-weight: 500;
}
.blog-desc {
  font-size: 1.08rem;
  color: #555;
  margin-bottom: 22px;
  line-height: 1.7;
}
.blog-btn {
  align-self: flex-start;
  background: #b89c6a;
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 8px 28px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  letter-spacing: 1px;
}
.blog-btn:hover {
  background: #a07f4f;
  color: #fff;
}
.pro-star {
  display: flex;
  align-items: center;
  font-size: 28px;
  gap: 2px;
  justify-content: center;
}

.pro-star .star {
  color: #cfd3dc;
  transition: color 0.2s;
  font-size: 20px;
}

.pro-star .star.active {
  color: #ffb800;
}

.pro-star .star-count {
  color: #b0b5c3;
  font-size: 17px;
  margin-left: 8px;
}
.original-price {
  text-decoration: line-through;
  color: #999;
  margin-left: 10px;
  font-size: 15px;
}

@media (max-width: 900px) {
  .blog-row {
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  }
  .blog-img-box, .blog-img-box img {
    max-width: 100%;
    min-height: 180px;
    border-radius: 18px 18px 0 0;
  }
  .blog-content-box {
    padding: 22px 16px 22px 16px;
  }
}

#qodef-page-inner{
  padding: 0 !important;
}
@media screen and (max-width: 768px) {
  #qodef-page-outer{
    margin-top: 110px;
  }
  .banner-wrapper .long-banner{
    height: 200px;
  }

  .original-price{
    margin-left: 5px;
    font-size: 14px;
  }
  .pro-star{
    font-size: 16px;
  }
  .pro-star .star{
    font-size: 16px;
  }
  .pro-star .star-count{
    font-size: 15px;
    margin-left: 5px;
  }

  .cat-intro-section{
    margin: 0 3%;
  }
  .banner-wrapper .two-banner{
    padding: 0 3%;
    flex-direction: column;
    gap: 0px;
  }
  .two-banner-item{
    width: 100%;
  }
  .product-container{
    padding: 0 3%;
  }
  .series-section{
    margin: 50px 0 0 0;
  }
  .series-section .cat-intro-title{
    margin-bottom: 30px;
  }

  .sec-two-banner{
    flex-direction: column;
    gap: 0px;
  }
  .sec-two-banner .two-banner-item a,.sec-two-banner .two-banner-item img{
    border-radius: 12px;
  }

  .blog-title{
    font-size: 20px;
    margin-bottom: 8px;
  }
  .blog-desc{
    font-size: 15px;
    margin-bottom: 15px;
  }
  .blog-date{
    font-size: 14px;
    margin-bottom: 6px;
  }
}