/* =========================================================
   FRIALTO — PRODUTO INDIVIDUAL PREMIUM (CARNES BOVINAS)
   Arquivo: product-cards.css
========================================================= */

/* =========================
   CONTAINER GERAL — SINGLE
========================= */
.fr-single-premium {
  max-width: 1320px;
  margin: 40px auto;
  padding: 40px 24px;
  background: linear-gradient(180deg, #fafafa, #ffffff);
  border-radius: 28px;
}

/* =========================
   GRID PRINCIPAL — SINGLE
========================= */
.fr-single-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: flex-start;
}

/* =========================
   IMAGENS — SINGLE
========================= */
.fr-single-image {
  background: #fff;
  border-radius: 24px;
  padding: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
}

.fr-single-image img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
}

/* =========================
   CONTEÚDO — SINGLE
========================= */
.fr-single-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* =========================
   TÍTULO — SINGLE
========================= */
.fr-single-title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.15;
  color: #111;
}

/* =========================
   BLOCO DE PREÇO — HERO
========================= */
.fr-single-price-box {
  background: linear-gradient(135deg, #ffffff, #fafafa);
  border-radius: 22px;
  padding: 26px;
  border: 2px solid rgba(228,16,14,.08);
  box-shadow: 0 16px 40px rgba(228,16,14,.15);
}

.fr-single-price-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: #777;
}

.fr-single-price-main {
  display: block;
  font-size: 42px;
  font-weight: 900;
  color: #e4100e;
  margin: 6px 0;
}

.fr-single-price-sub {
  font-size: 13px;
  color: #777;
}

/* =========================
   TABELA DE PREÇOS
========================= */
.fr-single-price-table {
  margin-top: 18px;
  border-top: 1px solid #eee;
  padding-top: 14px;
}

.fr-single-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 6px 0;
}

.fr-single-row span {
  color: #666;
}

.fr-single-row strong {
  color: #111;
  font-weight: 700;
}

/* =========================
   DESCRIÇÃO — SINGLE
========================= */
.fr-single-description {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

/* =========================
   BOTÃO COMPRA — SINGLE
========================= */
.fr-single-buy .single_add_to_cart_button {
  width: 100%;
  height: 54px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  background: linear-gradient(135deg, #e4100e, #b90d0b);
  color: #fff;
  border: none;
  box-shadow: 0 12px 30px rgba(228,16,14,.45);
  transition: transform .15s ease, box-shadow .15s ease;
}

.fr-single-buy .single_add_to_cart_button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(228,16,14,.55);
}

/* =========================
   SELOS — SINGLE
========================= */
.fr-single-seals {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #444;
}

.fr-single-seals span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.fr-single-seals i {
  color: #e4100e;
}

/* =========================
   RELACIONADOS — SINGLE
========================= */
.fr-single-related {
  margin-top: 64px;
}

.fr-single-related h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 24px;
}

.fr-single-related .products {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  align-items: stretch;
}

/* =========================================================
   FRIALTO — CARD PREMIUM
   Catálogo • Ofertas • Relacionados
========================================================= */

.fr-product-card {
  background: #fff;
  border-radius: 22px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 14px 36px rgba(0,0,0,.08);
  transition: transform .18s ease, box-shadow .18s ease;
}

.fr-product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(0,0,0,.12);
}

/* IMAGEM */
.fr-product-card-image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  margin-bottom: 14px;
}

.fr-product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TÍTULO */
.fr-product-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
  line-height: 1.3;
}

/* PREÇO */
.fr-product-card-price {
  margin-top: auto;
  font-size: 16px;
  font-weight: 800;
  color: #e4100e;
}

.fr-product-card-price del {
  color: #999;
  font-weight: 500;
  margin-right: 6px;
}

.fr-product-card-unit {
  font-size: 12px;
  color: #777;
}

/* BOTÃO CARD */
.fr-product-card .button {
  margin-top: 14px;
  height: 44px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(135deg, #e4100e, #b90d0b);
  color: #fff;
  box-shadow: 0 10px 26px rgba(228,16,14,.4);
  border: none;
}

.fr-product-card .button:hover {
  box-shadow: 0 16px 36px rgba(228,16,14,.55);
}

/* =========================
   GRID PADRÃO
   Catálogo • Ofertas
========================= */
.frcat-grid,
.fr-catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

@media (max-width: 1024px) {
  .frcat-grid,
  .fr-catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .frcat-grid,
  .fr-catalog-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   RESPONSIVO — SINGLE
========================= */
@media (max-width: 992px) {
  .fr-single-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .fr-single-price-main {
    font-size: 36px;
  }
}