/* Start custom CSS for html, class: .elementor-element-c03ae21 */.gpx-shop-grid{
  padding:60px 20px;
  background:#F7F9FB;
  box-sizing:border-box;
}
.gpx-shop-grid *{ box-sizing:border-box; }
.gpx-shop-grid__inner{
  max-width:1320px;
  margin:0 auto;
}
.gpx-shop-grid__header{
  text-align:center;
  margin-bottom:40px;
}
.gpx-shop-grid__title{
  font-size:34px;
  font-weight:800;
  color:#0E3E6F;
  margin:0 0 10px;
  letter-spacing:-0.5px;
}
.gpx-shop-grid__sub{
  font-size:15px;
  color:#5F7285;
  margin:0;
}

.gpx-shop-grid__list{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:26px;
}

.gpx-product-card{
  background:#FFFFFF;
  border-radius:14px;
  overflow:hidden;
  border:1px solid #EAEEF2;
  box-shadow:0 2px 6px rgba(14,62,111,0.05);
  transition:box-shadow .25s ease, transform .25s ease, opacity .4s ease;
  display:flex;
  flex-direction:column;
  opacity:0;
  transform:translateY(14px);
  text-decoration:none !important;
  cursor:pointer;
}
.gpx-product-card.gpx-is-visible{
  opacity:1;
  transform:translateY(0);
}
.gpx-product-card:hover{
  box-shadow:0 14px 28px rgba(14,62,111,0.14);
  transform:translateY(-4px);
}

.gpx-product-card__media{
  position:relative;
  width:100%;
  aspect-ratio:1/1;
  overflow:hidden;
  background:#F1F4F7;
}
.gpx-product-card__img{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:opacity .35s ease, transform .5s ease;
}
.gpx-product-card__img--front{
  opacity:1;
  z-index:2;
}
.gpx-product-card__img--back{
  opacity:0;
  z-index:1;
}
.gpx-product-card:hover .gpx-product-card__img--front{
  opacity:0;
}
.gpx-product-card:hover .gpx-product-card__img--back{
  opacity:1;
  transform:scale(1.03);
}

.gpx-product-card__body{
  padding:16px 16px 20px;
  text-align:center;
  flex:1;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:10px;
}
.gpx-product-card__name{
  font-size:15px;
  font-weight:700;
  color:#135DA8 !important;
  line-height:1.4;
  margin:0;
  text-decoration:none;
}
.gpx-product-card__price{
  font-size:16px;
  font-weight:800;
  color:#0E3E6F;
}

.gpx-shop-grid__more-wrap{
  display:flex;
  justify-content:center;
  margin-top:46px;
}
.gpx-shop-grid__more-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#135DA8 !important;
  color:#FFFFFF !important;
  border:none !important;
  padding:13px 34px !important;
  border-radius:50px !important;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
  box-shadow:0 8px 18px rgba(19,93,168,0.28);
  transition:background .2s ease, transform .2s ease;
}
.gpx-shop-grid__more-btn:hover{
  background:#0E3E6F !important;
  transform:translateY(-2px);
}
.gpx-shop-grid__more-btn svg{
  transition:transform .25s ease;
}
.gpx-shop-grid__more-btn.gpx-is-open svg{
  transform:rotate(180deg);
}
.gpx-shop-grid__more-wrap.gpx-is-hidden{
  display:none;
}

@media (max-width:991px){
  .gpx-shop-grid__list{
    grid-template-columns:repeat(3, 1fr);
    gap:18px;
  }
  .gpx-shop-grid__title{ font-size:28px; }
}

@media (max-width:767px){
  .gpx-shop-grid{ padding:44px 16px; }
  .gpx-shop-grid__list{
    grid-template-columns:repeat(2, 1fr);
    gap:14px;
  }
  .gpx-product-card__body{ padding:12px 10px 16px; }
  .gpx-product-card__name{ font-size:13px; }
  .gpx-product-card__price{ font-size:14px; }
  .gpx-shop-grid__title{ font-size:24px; }
  .gpx-shop-grid__sub{ font-size:13px; }
}

@media (max-width:480px){
  .gpx-shop-grid__list{
    grid-template-columns:repeat(2, 1fr);
    gap:10px;
  }
  .gpx-shop-grid__more-btn{
    width:100%;
    justify-content:center;
    padding:12px 20px !important;
  }
}/* End custom CSS */