.sexbox {
  width: 100%;
  padding: 0;
}

.gs-filters {
  border: 1px solid black;
  background: #efefef;
  font-size: 12px;
  color: black;
  padding: 10px;
  display: flex;
  justify-content: space-between;
}

.gs-filters label,
.gs-filters select {
  margin: 0;
}

.gs-filters select {
  font-size: 12px;
  color: black;
}

.gs-items {
  display: flex;
  flex-wrap: wrap;
  background: #efefef;
}

.gs-item {
  display: flex;
  width: calc(33.333% - 24px);
  margin: 10px;
  background: white;
  color: black;
  border: 1px solid #e0e0e0;
}

.gs-item figure {
  width: 30%;
  display: flex;
  align-items: center;
}

.after-fig {
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.gs-name {
  font-weight: bold;
}

.gs-btn,
.gsg-btn,
.ggs-btn {
  border: none;
  background: #009922;
  color: white;
  font-size: 12px;
  padding: 1px 5px;
}

/* Valentine's Day Promotion Styles */
.gs-promo-banner {
  background: linear-gradient(135deg, #ff4d8f 0%, #ff6ba9 50%, #ff4d8f 100%);
  border: 2px solid #ff1a75;
  border-radius: 8px;
  padding: 15px 20px;
  margin: 10px 0 20px 0;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 4px 15px rgba(255, 77, 143, 0.3);
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 4px 15px rgba(255, 77, 143, 0.3);
  }

  50% {
    box-shadow: 0 4px 25px rgba(255, 77, 143, 0.5);
  }
}

.gs-promo-icon {
  font-size: 32px;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {

  0%,
  100% {
    transform: scale(1);
  }

  10%,
  30% {
    transform: scale(1.2);
  }

  20%,
  40% {
    transform: scale(1);
  }
}

.gs-promo-text {
  color: white;
  font-size: 14px;
  line-height: 1.5;
}

.gs-promo-text strong {
  font-size: 16px;
  display: block;
  margin-bottom: 5px;
}

.gs-promo-text small {
  display: block;
  font-size: 11px;
  opacity: 0.9;
  margin-top: 3px;
}

.gs-item-promo {
  border: 2px solid #ff4d8f !important;
  box-shadow: 0 2px 10px rgba(255, 77, 143, 0.2);
  position: relative;
}

.gs-item-promo::before {
  content: "❤️ -50%";
  position: absolute;
  top: -16px;
  right: -16px;
  background: #ff1a75;
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.gs-price-promo {
  display: flex;
  /*  flex-direction: column; */
  align-items: flex-start;
  gap: 3px;
}

.gs-price-old {
  font-size: 11px;
  color: #888;
  text-decoration: line-through;
}

.gs-price-new {
  font-size: 14px;
  color: #ff1a75;
  font-weight: bold;
}

.gs-discount {
  background: #ff1a75;
  color: white;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: bold;
  margin-top: 2px;
}