
/* Ryan Studios - borda/linha laranja sempre ligada nos cards */
.product-card,
.product,
.card-produto,
#promoGrid .product-card,
#productsGrid .product-card,
#promocoes .product-card,
#produtos .product-card {
  position: relative !important;
  overflow: hidden !important;
  border: 1px solid rgba(255, 106, 0, .55) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255, 106, 0, .10),
    0 0 18px rgba(255, 106, 0, .10),
    0 12px 28px rgba(0, 0, 0, .38) !important;
}

/* linha laranja no topo do produto */
.product-card::before,
.product::before,
.card-produto::before,
#promoGrid .product-card::before,
#productsGrid .product-card::before,
#promocoes .product-card::before,
#produtos .product-card::before {
  content: "" !important;
  position: absolute !important;
  left: 10px !important;
  right: 10px !important;
  top: 0 !important;
  height: 3px !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, transparent, #ff6a00, #ff8a00, transparent) !important;
  box-shadow: 0 0 16px rgba(255, 106, 0, .85) !important;
  opacity: 1 !important;
  pointer-events: none !important;
  z-index: 50 !important;
}

/* linha lateral discreta */
.product-card::after,
.product::after,
.card-produto::after,
#promoGrid .product-card::after,
#productsGrid .product-card::after,
#promocoes .product-card::after,
#produtos .product-card::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 18px !important;
  bottom: 18px !important;
  width: 2px !important;
  border-radius: 999px !important;
  background: linear-gradient(180deg, transparent, rgba(255,106,0,.95), transparent) !important;
  box-shadow: 0 0 14px rgba(255, 106, 0, .55) !important;
  opacity: 1 !important;
  pointer-events: none !important;
  z-index: 50 !important;
}

/* garante que conteudo fique acima do fundo e abaixo da linha */
.product-card > *,
.product > *,
.card-produto > *,
#promoGrid .product-card > *,
#productsGrid .product-card > *,
#promocoes .product-card > *,
#produtos .product-card > * {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .product-card,
  .product,
  .card-produto,
  #promoGrid .product-card,
  #productsGrid .product-card,
  #promocoes .product-card,
  #produtos .product-card {
    border-color: rgba(255, 106, 0, .68) !important;
  }

  .product-card::before,
  .product::before,
  .card-produto::before,
  #promoGrid .product-card::before,
  #productsGrid .product-card::before,
  #promocoes .product-card::before,
  #produtos .product-card::before {
    height: 3px !important;
    left: 8px !important;
    right: 8px !important;
  }
}
