.gptv-creator-store {
  display: grid;
  gap: 18px;
  width: 100%;
  margin: 22px 0;
  padding: 22px;
  color: #fff;
  background: rgba(11, 16, 24, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.gptv-creator-store__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
}

.gptv-creator-store__title {
  margin: 0;
  color: #fff;
  font-size: 22px;
  font-weight: 850;
  line-height: 1.15;
}

.gptv-creator-store__subtitle {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.45;
}

.gptv-creator-store__link,
.gptv-wcfm-manage-store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 40px;
  padding: 10px 15px;
  color: #090d11;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.gptv-creator-store__link:hover,
.gptv-wcfm-manage-store-button:hover {
  color: #090d11;
  transform: translateY(-1px);
}

.gptv-creator-store__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  min-width: 0;
}

.gptv-creator-store-product {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
}

.gptv-creator-store-product__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

.gptv-creator-store-product__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gptv-creator-store-product__body {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
  padding: 13px;
}

.gptv-creator-store-product__title {
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.25;
}

.gptv-creator-store-product__title a {
  color: inherit;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.gptv-creator-store-product__price {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.gptv-creator-store-product__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin-top: 2px;
  padding: 9px 12px;
  color: #fff;
  background: #5e56ff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
}

.gptv-creator-store-product__button:hover {
  color: #fff;
}

body .um.um-profile .gptv-wcfm-profile-manage {
  display: inline-flex;
  margin-left: 8px;
  vertical-align: middle;
}

body .um.um-profile .gptv-wcfm-manage-store-button--profile {
  min-height: 36px;
  padding: 9px 13px;
  color: #090d11;
}

.gptv-shop-list--products {
  gap: 10px;
}

.gptv-shop-card--product {
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  text-decoration: none;
}

.gptv-shop-card--product .gptv-shop-card-image {
  display: block;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.gptv-shop-card--product .gptv-shop-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gptv-shop-card-body {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 7px 2px 0;
}

.gptv-shop-card-title {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gptv-shop-card-price {
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.2;
}

@media (max-width: 900px) {
  .gptv-creator-store__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .gptv-creator-store {
    padding: 16px;
    border-radius: 18px;
  }

  .gptv-creator-store__header {
    display: grid;
    grid-template-columns: 1fr;
  }

  .gptv-creator-store__link,
  .gptv-wcfm-manage-store-button,
  .gptv-creator-store-product__button {
    width: 100%;
  }

  .gptv-creator-store__grid {
    grid-template-columns: 1fr;
  }

  body .um.um-profile .gptv-wcfm-profile-manage {
    display: flex;
    width: 100%;
    margin: 10px 0 0;
  }
}
