.gardensun-goods-list {
  padding: 100px 0;
  background: #fff;
  font-family: var(--font-family);
}

.gardensun-goods-list .container {
  display: flex;
  gap: 40px;
}
.goods-list-tabs {
  display: flex;
  justify-content: center;
  gap: 160px;
  margin-bottom: 40px;
}
.goods-list-tab {
  font-size: 20px;
  color: #666;
  text-decoration: none;
  font-family: var(--font-family);
  position: relative;
  padding-bottom: 8px;
  transition: color 0.3s;
}
.goods-list-tab.active {
  color: #221815;
  font-weight: 600;
}
.goods-list-tab.active::after {
  content: '';
  display: block;
  height: 3px;
  width: 40px;
  background: #221815;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  border-radius: 2px;
}
.goods-list-tab:hover {
  color: #221815;
}
.goods-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}
.goods-card {
  background: #fafafa;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.goods-card:hover {
  box-shadow: 0 6px 24px rgba(34,24,21,0.12);
}
.goods-card-img-wrap {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  background: #eee;
  overflow: hidden;
}
.goods-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.goods-card:hover .goods-card-img-wrap img {
  transform: scale(1.05);
}
.goods-card-info {
  padding: 20px 18px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.goods-card-title {
  font-size: 18px;
  color: #221815;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.goods-card-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  height: 44px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.goods-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
.goods-card-price {
  color: #bfa16b;
  font-size: 18px;
  font-weight: 600;
}
.goods-card-btn {
  background: #221815;
  color: #fff;
  border-radius: 4px;
  padding: 6px 18px;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s;
}
.goods-card-btn:hover {
  background: #bfa16b;
  color: #221815;
}
.goods-list-pagination {
  margin-top: 40px;
  text-align: center;
}
.gardensun-goods-list-v2 .goods-list-flex {
  display: flex;
  gap: 40px;
}
.goods-list-sidebar {
  width: 240px;
  min-width: 180px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.goods-list-select {
  width: 100%;
  padding: 8px 12px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #eee;
  background: #fafafa;
  color: #221815;
  margin-bottom: 12px;
}
.goods-list-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.goods-list-menu-link {
  display: block;
  padding: 10px 16px;
  color: #666;
  text-decoration: none;
  border-radius: 4px;
  font-size: 16px;
  margin-bottom: 6px;
  transition: background 0.2s, color 0.2s;
}
.goods-list-menu-link.active,
.goods-list-menu-link:hover {
  background: #221815;
  color: #fff;
}
.goods-list-detail {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.goods-detail-card {
  background: #fafafa;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 32px 40px;
  display: flex;
  gap: 32px;
  align-items: center;
  max-width: 700px;
  width: 100%;
}
.goods-detail-img {
  width: 240px;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  background: #eee;
  flex-shrink: 0;
}
.goods-detail-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.goods-detail-title {
  font-size: 24px;
  color: #221815;
  font-weight: 600;
  margin-bottom: 8px;
}
.goods-detail-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 12px;
}
.goods-detail-meta {
  display: flex;
  align-items: center;
  gap: 24px;
}
.goods-detail-price {
  color: #bfa16b;
  font-size: 20px;
  font-weight: 600;
}
.goods-detail-btn {
  background: #221815;
  color: #fff;
  border-radius: 4px;
  padding: 8px 24px;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s;
}
.goods-detail-btn:hover {
  background: #bfa16b;
  color: #221815;
}
.goods-detail-empty {
  color: #999;
  font-size: 18px;
  text-align: center;
  padding: 60px 0;
}
.gardensun-goods-list.container {
  display: flex;
  gap: 40px;
}
.main-left {
  width: 260px;
  min-width: 180px;
  flex-shrink: 0;
  margin: 0;
}
.main-right {
  flex: 1;
  min-width: 0;
  margin: 0;
}
.product-hover-content1{
  text-align: left;
}
.product-card {
  position: relative;
  background: #ffffff;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  will-change: transform;
  /* height: 470px; */
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  border: 0.5px solid rgba(102, 102, 102, 0.30);
  padding: 10px 20px;
}
.product-card .txt-box {
  position: relative;
  flex-shrink: 0;
  text-align: left;
}
.product-card .pic {
  display: block;
  /* overflow: hidden; */
  flex: 1;
  transition: height 0.3s;
}
.product-card .pic img {
  /* padding-top: 10px; */
  /* height: 305px; */
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.3s;
}
.product-title {
  height: 44px;
  text-align: left;
  font-size: 16px;
  color: #221815;
  font-weight: 600;
  font-family: var(--font-family);
  line-height: 22px;
  transition: transform 0.3s;
  will-change: transform;
  z-index: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-model{
  height: 20px;
  color: #221815;
  font-family: var(--font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 10px 0;
}
.product-hover-content {
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  opacity: 0;
  pointer-events: none;
  /* transform: translateY(40px);
  transition: opacity 0.3s, transform 0.3s, height 0.3s; */
  padding: 10px 0;
  margin: 0 20px;
  text-align: left;
  z-index: 2;
  height: 0;
  overflow: hidden;
}
/* .product-card:hover .product-hover-content,
.product-card:focus-within .product-hover-content {
  opacity: 1;
  border-top: 1px solid var(--color-primary);
  pointer-events: auto;
  transform: translateY(0);
  height: auto;
} */
.product-desc {
  font-size: 16px;
  color: #221815;
  margin-bottom: 10px;
  line-height: normal;
  font-weight: 400;
  font-family: var(--font-family);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.readmore-btn {
  display: inline-block;
  font-size: 16px;
  color: #221815;
  border-bottom: 1px solid #221815;
  line-height: 24px;
  text-decoration: none;
  transition: background 0.2s;
  font-weight: 400;
  font-family: var(--font-family);
}
.readmore-btn:hover{
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
}
/* .product-card:hover .product-title{
  transform: translateY(-10px);
  margin-bottom: 10px;
} */
.product-card:hover .pic img{
  transform: scale(1.05);
}

.gardensun-goods-list #pagesize ul li:first-child,
.gardensun-goods-list #pagesize ul li:last-child{
  display: none;
}

.gardensun-goods-list #pagesize ul li a {
  background: #d9d9d9;
  color: #221815;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  padding: 4px 13px;
  border: none;
  margin: 0 10px;
}

.gardensun-goods-list #pagesize ul li a.active {
  border: none;
  color: #f6f5f1;
}

.gardensun-goods-list #pagesize ul li a:hover {
  border: none;
  box-shadow: none;
}

.gardensun-goods-list .sidemenu > .title{
  color: #221815;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 34px;
  padding: 0;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(102, 102, 102, 0.50);
}

.gardensun-goods-list .sidemenu .menu-title{
  color: #221815;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 34px;
  padding: 20px 0;
}

.gardensun-goods-list .sidemenu .menu-content{
  padding: 0;
}

.gardensun-goods-list .sidemenu .menu-item{
  border-bottom: 1px solid rgba(102, 102, 102, 0.50);
  border-top: none;
}

.gardensun-goods-list .sidemenu .sub-menu-item{
  border: none;
}

.gardensun-goods-list .sidemenu .sub-menu-item .menu-title {
  padding-bottom: 10px;
  color: #666;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.gardensun-goods-list .sidemenu .menu-item.active > .menu-content > .menu-arrow::before { 
  color: #666;
}

.gardensun-goods-list .sidemenu .menu-item.active > .menu-content .menu-title {
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}


@media (max-width: 1024px) {
  .goods-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .goods-list-tabs {
    gap: 60px;
  }
}
@media (max-width: 600px) {
  .gardensun-goods-list .sidemenu{
    display: block;
  }
  .gardensun-goods-list .container{
    flex-direction: column;
  }
  .goods-list-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .goods-list-tabs {
    gap: 24px;
    font-size: 16px;
  }
}
@media (max-width: 900px) {
  .gardensun-goods-list.container {
    flex-direction: column;
    gap: 0;
    padding: 60px 0;
  }
  .main-left,
  .main-right {
    width: 100%;
    min-width: 0;
    margin: 0;
  }
  .main-left {
    margin-bottom: 24px;
  }
  .prolist ul.row {
    display: flex;
    flex-direction: row;
    /* gap: 20px; */
    flex-wrap: wrap;
    /* justify-content: center; */
  }
  .prolist ul.row > li {
    width: 100% !important;
    max-width: 100%;
    min-width: 0;
    /* margin: 0 auto; */
  }
  .product-card {
    margin-bottom: 10px;
  }
} 

@media (max-width:992px){
  .gardensun-goods-list .container{
    flex-direction: column;
  }
  .main-left{
    width: 100%;
  }
  /* .product-card{
    height: 436px !important;
  } */
}
@media (max-width: 1200px){
  /* .product-card{
    height: 330px;
  } */
}
@media (max-width: 576px){
  /* .prolist ul.row > li{
    width: 70% !important;
  } */
  /* .product-card{
    height: 370px !important;
  } */
}
@media (max-width: 768px){
  .gardensun-goods-list{
    padding: 60px 0 40px 0;
  }
}