/* ============================================================
   farba_sale.css — Акційні товари
   ============================================================ */

/* ── ЗАГАЛЬНА КАРТКА ──────────────────────────────────────── */
.farba-sale-card {
  position: relative;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.07);
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.farba-sale-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,.13);
  transform: translateY(-2px);
}
.farba-sale-card .image {
  position: relative;
  overflow: hidden;
  background: #f8f8f8;
  flex-shrink: 0;
}
.farba-sale-card .image img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  display: block;
  padding: 8px;
  transition: transform .3s;
}
.farba-sale-card:hover .image img { transform: scale(1.04); }

/* Бейдж знижки */
.farba-sale-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #e8001c;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  line-height: 1.4;
  z-index: 2;
}

/* Caption */
.farba-sale-card .caption {
  padding: 10px 10px 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.farba-sale-card .name {
  min-height: 40px;
  margin-bottom: 6px;
  flex-shrink: 0;
}
.farba-sale-card .name a {
  font-size: 13px;
  line-height: 1.35;
  color: #222;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.farba-sale-card .name a:hover { color: #e8001c; }

/* Ціни */
.farba-sale-card .price {
  flex-shrink: 0;
  margin-bottom: 8px;
  line-height: 1.3;
}
.farba-sale-card .price .price-old {
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
  display: block;
}
.farba-sale-card .price .price-new {
  font-size: 18px;
  font-weight: 700;
  color: #e8001c;
}

/* Кнопка */
.farba-sale-card .cart { margin-top: auto; }
.farba-sale-card .cart .oct-button {
  display: block;
  width: 100%;
  text-align: center;
  padding: 8px 6px;
  font-size: 13px;
  border-radius: 6px;
}

/* ── ВІДЖЕТ НА ГОЛОВНІЙ ───────────────────────────────────── */
.farba-sale-widget { margin-bottom: 20px; }

.farba-sale-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 10px;
}
.farba-sale-title {
  margin: 0 !important;
  font-size: 20px !important;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.farba-sale-icon { color: #e8001c; }

.farba-sale-view-all {
  white-space: nowrap;
  font-size: 14px;
  color: #555;
  text-decoration: none;
  font-weight: 500;
  transition: color .2s;
}
.farba-sale-view-all:hover { color: #e8001c; text-decoration: none; }
.farba-sale-view-all .fa { margin-left: 3px; }

/* Desktop carousel показується, мобільна сітка — прихована */
.farba-sale-desktop { display: block; }
.farba-sale-mobile  { display: none;  }

/* ── МОБІЛЬНА СІТКА 2×4 ──────────────────────────────────── */
@media (max-width: 767px) {
  .farba-sale-desktop { display: none !important; }
  .farba-sale-mobile  { display: block !important; }

  .farba-sale-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .farba-sale-grid-item { }

  .farba-sale-card .image img { height: 150px; }
  .farba-sale-card .price .price-new { font-size: 15px; }

  /* Картка "Показати більше" */
  .farba-sale-more-card {
    display: flex;
    align-items: stretch;
  }
  .farba-sale-more-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 180px;
    background: #f5f5f5;
    border-radius: 10px;
    border: 2px dashed #ddd;
    color: #555;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 600;
    transition: background .2s, border-color .2s;
    padding: 16px;
    text-align: center;
  }
  .farba-sale-more-link .fa {
    font-size: 28px;
    color: #e8001c;
  }
  .farba-sale-more-link:hover {
    background: #fff0f0;
    border-color: #e8001c;
    color: #e8001c;
  }
}

/* ── СТОРІНКА /farba_sale ─────────────────────────────────── */
.farba-sale-page { padding-bottom: 40px; }

.farba-sale-page-header {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 16px 0 20px;
  flex-wrap: wrap;
}
.farba-sale-page-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: #222;
}
.farba-sale-page-title .fa { color: #e8001c; margin-right: 6px; }
.farba-sale-page-total {
  font-size: 14px;
  color: #888;
}

/* Фільтр-чіпи */
.farba-sale-filter-wrap {
  margin-bottom: 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.farba-sale-filter-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-bottom: 4px;
}
.farba-chip {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid #ddd;
  background: #f7f7f7;
  color: #444;
  font-size: 13px;
  cursor: pointer;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background .15s, border-color .15s, color .15s;
  user-select: none;
}
.farba-chip:hover,
.farba-chip.active {
  background: #e8001c;
  border-color: #e8001c;
  color: #fff !important;
}

/* Сітка сторінки */
.farba-sale-col { margin-bottom: 20px; }

/* Пагінація */
.farba-sale-pagination { margin-top: 20px; }

/* Порожній стан */
.farba-sale-empty {
  padding: 40px 0;
  color: #aaa;
  font-size: 16px;
}
.farba-sale-empty .fa { margin-right: 8px; }

/* ── МОБІЛЬНА СТОРІНКА ────────────────────────────────────── */
@media (max-width: 767px) {
  .farba-sale-page-title { font-size: 18px; }

  .farba-sale-filter-chips { flex-wrap: nowrap; }
  .farba-chip { font-size: 12px; padding: 5px 12px; }

  .farba-sale-card .image img { height: 130px; }
  .farba-sale-card .name a { font-size: 12px; }
  .farba-sale-card .price .price-new { font-size: 14px; }
  .farba-sale-card .cart .oct-button { font-size: 12px; padding: 6px 4px; }
}
