.banner-content{
  height: 540px;
  background-image: url('../../images/productCenter_file/banner.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.banner-content .banner-tips{
  position: absolute;
  right: 8%;
  top: 200px;
  text-align: right;
  font-size: 28px;
  font-weight: 400;
  color: #fff;
}
.banner-content .banner-tips h2{
  font-size: 32px;
  /* font-weight: 400; */
  margin-bottom: 50px;
}
.banner-content .banner-tips p{
  font-size: 22px;
}
.banner-content .banner-right-tips{
  position: absolute;
  right: 5%;
  bottom: 30px;
  text-align: right;
  font-size: 18px;
  font-weight: bold;
  color: rgb(87, 114, 165);
}
.banner-content .banner-goods{
  position: absolute;
  left: 10%;
  bottom: 30px;
}
.banner-content .banner-goods img{
  width: 80px;
  margin-right: 30px;
  transition: all .3s;
}
.banner-content .banner-goods img:hover{
  transform: scale(1.1);
}
.container{
  background-image: url('../../images/index_file/core_bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 -900px;
  padding-top: 100px;
}

/* Product Center Content */
.product-center-content {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 80px;
}

.section-title {
    text-align: center;
    margin: 40px 0;
}

.section-title h2 {
    color: #3b5d99; /* Adjust color to match image */
    font-size: 36px;
    font-weight: bold;
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #3b5d99;
    margin: 10px auto 0;
}

/* Flag List */
.flag-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
}

.flag-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: #3b5d99;
    font-weight: bold;
}

.flag-item img {
    height: 24px;
    width: auto;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    padding: 15px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-img {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
    padding-top: 100%; /* 1:1 Aspect Ratio */
}

.product-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

/* Tags on image */
.product-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff4d4f;
    color: #fff;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 4px;
    z-index: 2;
}

.product-info {
    text-align: left;
}

.product-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
    height: 44px; /* Limit to 2 lines approx */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

.product-action .consult-btn {
    color: #3b5d99;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
    cursor: pointer;
}

.product-action .consult-btn:hover {
    color: #2a4370;
}

a.product-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}
