:root {
  --sell-lots-glass: rgba(255,255,255,0.99);
}
.sell-page {
  padding: 0 0 32px;
  background: transparent;
}
.sell-page__inner {
  margin-top: var(--gf-gap-y, 24px);
  display: flex;
  flex-direction: column;
  gap: var(--gf-gap-y); 
}

.sell-hero-card {
  position: relative;
  margin: 0 0 var(--gf-gap-y, 24px); 
  padding: 16px 18px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: var(--gf-radius-xl, 16px);
  background: rgba(255, 255, 255, 0.6);
  border: var(--gf-border-glass, 1px solid rgba(255, 255, 255, 0.32));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--gf-shadow-soft, 0 10px 15px -3px rgb(0 0 0 / 0.08),
                  0 4px 6px -4px rgb(0 0 0 / 0.06));
}

.sell-hero__icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--sell-lots-glass);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sell-hero__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sell-hero__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sell-hero__app {
  font-weight: 600;  
  font-size: 20px;
  color: #0f172a;
}
.sell-hero__category {
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
}

.sell-hero__actions {
  margin-left: auto;
}
.sell-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 40px;
  padding: 0 16px;
  border-radius: 10px;
  border: none;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  background: linear-gradient(90deg, var(--gf-brand-blue), var(--gf-brand));
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(79, 70, 229, 0.38);
  transition: all var(--gf-transition-fast);
}

.sell-hero__btn:hover {
  background: linear-gradient(90deg, var(--gf-brand), var(--gf-brand-soft));
  box-shadow: 0 12px 26px rgba(79, 70, 229, 0.5);
  transform: translateY(-1px);
}


/* ========== ADAPTIVE ========== */

@media (max-width: 768px) {
  .sell-hero-card {
    margin: 0 0 var(--gf-gap-y, 20px);
    padding: 14px 16px;
    border-radius: 20px;
    gap: 14px;
  }

  .sell-hero__btn {
    height: 38px;
    min-width: 0;
  }

  .sell-hero__app {
    font-size: 18px;
  }

  .sell-hero__btn {
    padding-inline: 14px;
    font-size: 13px;
  }
}

@media (max-width: 479px) {
  .sell-hero-card {
    margin: 0 0 var(--gf-gap-y, 14px);
    padding: 12px 12px;
    gap: 12px;
    border-radius: 16px;
  }

  .sell-hero__btn {
    height: 34px;
    min-width: 0;
  }

  .sell-hero__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .sell-hero__app {
    font-size: 16px;
  }
  .sell-hero__category {
    font-size: 13px;
  }

  .sell-hero__btn {
    padding: 9px 12px;
    font-size: 13px;
  }
}

.sell-page .products-section {
  margin-top: 0;
}
.sell-page .products-header {
  margin-bottom: 8px;
}

.sell-page .products-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--gf-text-main, #111827);
}
.sell-page .products-grid {
  display: flex;
  flex-direction: column;
  gap: 4px;

  padding: 10px 14px;
  border-radius: var(--gf-radius-xl, 16px);
  background: rgba(255, 255, 255, 0.6);
  border: var(--gf-border-glass, 1px solid rgba(255, 255, 255, 0.32));
  box-shadow: var(--gf-shadow-soft, 0 10px 15px -3px rgb(0 0 0 / 0.08),
                  0 4px 6px -4px rgb(0 0 0 / 0.06));
}
.sell-page .seller-category-empty {
  padding: 4px 0;
  font-size: 14px;
  color: #64748b;
}
.sell-page .lot-card {
  padding: 8px 0;
  margin: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;

  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(148, 163, 253, 0.6);
}

.sell-page .lot-card:last-child {
  border-bottom: none;
}
.sell-page .lot-card-header {
  flex: 1;
  min-width: 0;
}
.sell-page .lot-card-title {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  margin: 0;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sell-page .lot-card-footer {
  margin-top: 0;
}

.sell-page .lot-card-meta {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  font-size: 12px;
}

.sell-page .lot-card-auto {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  font-size: 11px;
  line-height: 1;

  margin-left: 4px;

  background: rgba(47, 109, 253, 0.10);
  color: #2563eb;
}

.sell-page .lot-card-auto.is-off {
  background: rgba(148, 163, 253, 0.22);
  color: #9ca3af;
}
.sell-page .lot-card-price {
  font-weight: 700;
  font-size: 12px; 
  color: #0f172a;
}

.sell-page .lot-card-stock {
  color: #6b7280;
  font-size: 12px;
}

@media (max-width: 480px) {
  .sell-page .lot-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .sell-page .lot-card-meta {
    justify-content: flex-start;
  }
}
.seller-lot-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.seller-lot-link:focus-visible {
  outline: 2px solid rgba(62,42,247,0.25);
  border-radius: 12px;
}  

.lot-card--hidden {
  opacity: 0.6;
  background: #f9fafb;
}