/*
 * Legacy tweaks — the surviving part of the Yellow Pencil stylesheet.
 *
 * Yellow Pencil (waspthemes-yellow-pencil) held 24 hand-drawn rules in the
 * database and injected them from wp-content/uploads/yellow-pencil/custom-2075.css.
 * The plugin is being removed; the full original is kept for reference at
 * reference/yellow-pencil-original.css.
 *
 * Every rule was checked against the live pages under the fixfactor theme.
 * What follows is what still matches something. The rest is deleted, not moved —
 * see the audit note at the bottom of this file.
 *
 * @package Fixfactor
 */

/* =============================================================================
   1. LATEPOINT — keep
   The booking form ships with an inner shadow that reads as a second frame
   inside our own card. Verified live: .latepoint-booking-form-element appears
   3× on every page (the widget) and 20× on /booking/.
   ========================================================================== */

.latepoint-book-form-wrapper .latepoint-inline-form .latepoint-booking-form-element {
	box-shadow: none;
}

/* =============================================================================
   2. PRODUCT SHORT DESCRIPTION — keep until single-product.php is rebuilt
   .fixfactor-short-description and .mobile-short-description are our own
   classes, live on product pages (5 and 4 occurrences). These rules tidy up
   what the short description renders.
   ========================================================================== */

.fixfactor-short-description p > span {
	color: #ffd100;
}

/* Icon sizing inside the short description.
   NOTE: these target Font Awesome <i> elements. Font Awesome is being dropped
   in favour of inline SVG, so this rule dies with it — remove it at the same
   time, not before. */
.fixfactor-short-description i {
	color: rgba(0, 170, 196, 0.68);
	font-size: 18px;
	position: relative;
	top: 4px;
	left: 8px;
}

@media (max-width: 640px) {
	.mobile-short-description .fontawesome-icon {
		color: rgba(0, 170, 196, 0.4);
		font-size: 15px;
		position: relative;
		left: 7px;
	}
}

/* =============================================================================
   DELETED — verified to match nothing under the fixfactor theme
   Counted on the homepage, shop, a product page and /booking/:

     .hentry                      0 occurrences   (Avada's post wrapper)
     .fusion-product-content      0               (Avada shop loop card)
     .entry-summary               0               (Avada/Woo single summary)
     .woocommerce-store-notice    0               (store notice not in use)

   That removes 10 of the original 24 rules outright: the six
   `.hentry .product …` shop-loop rules, both `.entry-summary` rules and both
   `.woocommerce-store-notice` rules. They styled Avada's product grid, which
   the fixfactor theme does not render.

   26 Jul 2026 — the "FUSION LEFTOVERS" section went the same way. Fusion Builder
   and Fusion Core are deleted, so no .fusion-* element is ever emitted: curl over
   the homepage, blog, shop, a product page and a search page returns zero fusion
   classes in the markup once <style> blocks are stripped.
   ========================================================================== */
