.gsk-shopfla { position: relative; overflow: hidden; }

.gsk-shopfla-track {
  display: flex;
  gap: 20px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  padding: 20px 0 20px 20px;
  will-change: scroll-position;
}
.gsk-shopfla-track::-webkit-scrollbar { display: none; }

.gsk-shopfla-card{
  width: 270px;
  height: 450px;
  border-radius: 16px;
  flex: 0 0 auto;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background: #111;
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transform: translateZ(0);
  transition: transform .25s ease;
  cursor: pointer;
}
.gsk-shopfla-card:hover { transform: scale(1.03); }

.gsk-shopfla-card {
  border: none !important;
  outline: none !important;
}

.gsk-shopfla-card:focus,
.gsk-shopfla-card:focus-visible,
.gsk-shopfla-card:active {
  outline: none !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.gsk-shopfla-card {
  background-clip: padding-box;
}

.gsk-shopfla-badge{
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: #000;
  font-weight: 800;
  font-size: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}
.gsk-shopfla-badge img{ width: 18px; height: 18px; object-fit: contain; }

.gsk-shopfla-card .shopfla-overlay{
  width: 100%;
  height: 100%;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, #000 12%, rgba(0,0,0,0.15) 65%, rgba(0,0,0,0.0));
}

.gsk-shopfla-price{
  font-size: 34px;
  font-weight: 900;
  letter-spacing: .5px;
  text-align: center;
  margin-bottom: 10px;
  text-shadow: 0 6px 14px rgba(0,0,0,0.6);
}

.gsk-shopfla-card .shopfla-titulo{
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 10px;
  text-shadow: 0 6px 14px rgba(0,0,0,0.6);
}

.gsk-shopfla-meta{
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 12px;
  opacity: .9;
  margin-bottom: 14px;
}
.gsk-shopfla-meta span{
  background: rgba(0,0,0,0.35);
  padding: 6px 10px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.gsk-shopfla-action{
  width: 100%;
  background: rgba(255,255,255,0.96);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .22s ease, transform .22s ease;
}
.gsk-shopfla-card:hover .gsk-shopfla-action{
  opacity: 1;
  transform: translateY(0);
}

.gsk-shopfla-buy{
  color: #000;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: .3px;
}

/* Arrows */
.gsk-shopfla .gsk-shopfla-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  border-radius: 20%;
}
.gsk-shopfla .gsk-shopfla-arrow[data-dir="left"]{ left: 10px; }
.gsk-shopfla .gsk-shopfla-arrow[data-dir="right"]{ right: 10px; }
