.product_title strong {
	color: #ea0000;
}

.overview-specs {
    list-style-type: none;
    margin: 0 0 2em;
    padding: 0;
    display: flex;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}
.overview-specs li:first-child {
    border: 0;
}
.overview-specs li {
    display: block;
    width: 32%;
    border-left: 1px solid #e8e8e8;
    margin: 0;
    padding: 1em 1em 2em;
}
.overview-specs h5 {
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: .5em;
}
.overview-specs p {
    color: #ea0000;
    line-height: .7;
    margin: 0;
}
.overview-specs p strong {
    text-transform: uppercase;
    font-size: 2.3em;
    line-height: 1;
    display: block;
}

.afrq-menu-item { display: none !important; }

.page .ast-header-breadcrumb {
  display: none;
}

.single-product .product .summary {
    display: none;
}

.attachment-woocommerce_thumbnail{
	border-style: none !important;
}

/* ============================= */
/* RENTALS GRID (MAIN SYSTEM) */
/* ============================= */

.pbe-rentals-wrap {
  width: 100%;
}

/* 🔴 Hide duplicate shortcode buttons (we use category tiles instead) */
.pbe-rental-filters {
  display: none !important;
}

.pbe-rental-section {
  display: none;
}

.pbe-rental-section.is-active {
  display: block;
}

.pbe-rental-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

/* CARD */
.pbe-rental-card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.pbe-rental-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.08);
}

/* IMAGE */
.pbe-rental-image {
  aspect-ratio: 4 / 3;
  background: #f3f3f3;
  overflow: hidden;
}

.pbe-rental-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pbe-rental-image-placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #555555;
}

/* BODY */
.pbe-rental-card-body {
  padding: 18px;
}

.pbe-rental-title {
  margin: 0 0 12px;
  font-size: 1.22rem;
  line-height: 1.2;
  font-weight: 800;
  color: #111;
}

/* PRICING */
.pbe-rental-prices {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 0.98rem;
  color: #333;
}

.pbe-rental-prices strong {
  color: #111;
}

/* BUTTON */
.pbe-rental-btn {
  display: inline-block;
  background: #111111;
  color: #ffffff !important;
  text-decoration: none !important;
  padding: 11px 16px;
  border-radius: 8px;
  font-weight: 700;
  line-height: 1;
}

.pbe-rental-btn:hover {
  color: #ffffff !important;
  opacity: 0.94;
}

/* ============================= */
/* CATEGORY GRID */
/* ============================= */

.pbe-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.pbe-category-tile {
  position: relative;
  min-height: 220px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  color: #ffffff;
  text-decoration: none;
  background-size: cover;
  background-position: center;
}

.pbe-category-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0.2));
}

.pbe-category-tile-content {
  position: relative;
  z-index: 1;
}

.pbe-category-tile h3 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1.1;
}

.pbe-category-tile p {
  margin: 0;
  color: rgba(255,255,255,0.92);
  font-size: 0.95rem;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 1024px) {
  .pbe-rental-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pbe-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .pbe-rental-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pbe-rental-card {
    border-radius: 14px;
  }

  .pbe-rental-card-body {
    padding: 16px;
  }

  .pbe-rental-title {
    font-size: 1.08rem;
  }

  .pbe-category-grid {
    grid-template-columns: 1fr;
  }

  .pbe-category-tile {
    min-height: 180px;
    padding: 18px;
  }

  .pbe-category-tile h3 {
    font-size: 1.2rem;
  }
}