.prGallerySec{padding: var(--sp60) 0;}

/* ============================================================
   Murphy Used Equipment — Frontend Styles
   Matches screenshot: dark header bg, 3-col grid, card layout
   ============================================================ */
/* ── Reset / Base ─────────────────────────────────────────── */
.murphy-page-wrap,
.murphy-inventory-wrap,
.murphy-detail-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 20px 60px;
}

/* Prevent Chrome scroll anchoring jumps when AJAX swaps the grid/pagination */
.murphy-inventory-wrap,
#murphy-results-wrap,
#murphy-results-grid,
#murphy-pagination {
    overflow-anchor: none;
}
/* ── Breadcrumb ───────────────────────────────────────────── */
.murphy-breadcrumb {
    font-size: 16px;
    color: var(--text, #252022);

}
.murphy-breadcrumb a {
    color: #555;
    text-decoration: none;
}
.murphy-breadcrumb a:hover { text-decoration: underline; }
.murphy-breadcrumb__sep { margin: 0 6px; color: #aaa; }
.murphy-breadcrumb__current { color: #222; font-weight: 500; }
/* ── Category Grid ────────────────────────────────────────── */
.murphy-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 24px;
}
@media (max-width: 1024px) { .murphy-cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .murphy-cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .murphy-cat-grid { grid-template-columns: 1fr; } }
.murphy-cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #222;
    transition: transform 0.2s;
}
.murphy-cat-card:hover { transform: translateY(-3px); }
.murphy-cat-image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 4px;
    background: #eee;
}
.murphy-cat-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}
.murphy-cat-card:hover .murphy-cat-image img { transform: scale(1.04); }
.murphy-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ddd;
    font-size: 40px;
    font-weight: 700;
    color: #aaa;
}
.murphy-cat-label {
    margin-top: 10px;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
}
/* ── Inventory Page Title ─────────────────────────────────── */
.murphy-inventory-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 20px;
    color: #111;
}
/* ── Toolbar ──────────────────────────────────────────────── */
.murphy-toolbar {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
/* Search */
.murphy-search-wrap {
    flex: 1;
    min-width: 200px;
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 3px;
    background: #fff;
    overflow: hidden;
}
.murphy-search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 14px;
    font-size: 14px;
    background: transparent;
}
.murphy-search-icon {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 14px;
    color: #555;
    display: flex;
    align-items: center;
}
.murphy-search-icon:hover { color: #000; }
/* Filter / Sort selects */
.murphy-filter-wrap,
.murphy-sort-wrap {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 3px;
    background: #fff;
    overflow: hidden;
    min-width: 180px;
}
.murphy-select {
    appearance: none;
    -webkit-appearance: none;
    border: none;
    outline: none;
    background: transparent;
    padding: 10px 36px 10px 14px;
    font-size: 14px;
    cursor: pointer;
    width: 100%;
    color: #333;
}
.murphy-select-icon {
    position: absolute;
    right: 10px;
    pointer-events: none;
    color: #555;
    display: flex;
    align-items: center;
}
/* ── Results Grid ─────────────────────────────────────────── */
.murphy-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    min-height: 200px;
}
@media (max-width: 900px)  { .murphy-results-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .murphy-results-grid { grid-template-columns: 1fr; } }
/* Admin-managed listing footer block (rich text from Display Settings) */
.murphy-listing-footer {
    margin: 32px 0 24px;
    padding: 0;
    color: inherit;
    font-size: 15px;
    line-height: 1.6;
}
.murphy-listing-footer > *:first-child { margin-top: 0; }
.murphy-listing-footer > *:last-child  { margin-bottom: 0; }
.murphy-listing-footer img {
    max-width: 100%;
    height: auto;
}
.murphy-listing-footer a {
    color: #F2A900;
    text-decoration: underline;
}
.murphy-listing-footer a:hover {
    color: #252022;
}

/* Loading state */
.murphy-loading {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 260px;
    font-size: 16px;
    color: #888;
    text-align: center;
}
.murphy-loading::before {
    content: '';
    display: block;
    width: 28px;
    height: 28px;
    border: 3px solid #f5e6b8;
    border-top-color: #F2A900;
    border-radius: 50%;
    animation: murphy-spin 0.7s linear infinite;
}
/* Fixed-position overlay loader — keeps the spinner at viewport center
   regardless of where the user clicked pagination. The grid's old contents
   stay visible underneath, so there is no layout shift or focus auto-scroll. */
.murphy-loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(37, 32, 34, 0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    animation: murphy-overlay-fade 0.18s ease-out both;
}
.murphy-loading-overlay.is-visible {
    display: flex;
}
.murphy-loading-overlay__box {
    background: #ffffff;
    padding: 28px 36px;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    min-width: 180px;
}
.murphy-loading-overlay__spinner {
    width: 56px;
    height: 56px;
    border: 4px solid #f5e6b8;
    border-top-color: #F2A900;
    border-radius: 50%;
    animation: murphy-spin 0.7s linear infinite;
}
.murphy-loading-overlay__text {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #252022;
    letter-spacing: 0.02em;
}
@keyframes murphy-overlay-fade {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes murphy-spin { to { transform: rotate(360deg); } }

/* ==========================================================================
   Single-equipment image lightbox (with prev/next navigation).
   ========================================================================== */
.murphy-lightbox {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px 80px;
    box-sizing: border-box;
}
.murphy-lightbox.is-open {
    display: flex;
    animation: murphy-overlay-fade 0.18s ease-out both;
}
.murphy-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    cursor: zoom-out;
}
.murphy-lightbox__stage {
    position: relative;
    z-index: 2;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.murphy-lightbox__img,
.murphy-lightbox__video {
    display: block;
    max-width: 100%;
    max-height: calc(100vh - 120px);
    width: auto;
    height: auto;
    object-fit: contain;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
    background: #111;
    border-radius: 4px;
}
.murphy-lightbox__video {
    outline: none;
}

/* Gallery thumbnails — video items get a play-icon overlay so users see the
   item is playable, while the <video preload="metadata"> renders the first frame.
   Both the thumbnail strip and the photos accordion use a padding-top aspect-ratio
   trick on the parent, so video elements MUST be position:absolute fill (matching
   how the existing img elements behave). */
.galleryThumb {
    position: relative;
}
.galleryThumb video.murphy-gallery-thumb,
.murphy-photo-item--video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #111;
}
.galleryThumb__playicon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    pointer-events: none;
    transition: background 0.15s ease, transform 0.15s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}
.galleryThumb:hover .galleryThumb__playicon,
.murphy-photo-item--video:hover .galleryThumb__playicon {
    background: #F2A900;
    color: #252022;
    transform: translate(-50%, -50%) scale(1.08);
}

/* Main gallery video element styling parallels the main image. */
.murphy-gallery-main-video {
    width: 100%;
    height: auto;
    background: #111;
    cursor: zoom-in;
    display: block;
}

/* Play-icon overlay shown over the main gallery area when the active item is a video. */
.murphy-gallery-main { position: relative; }
.murphy-gallery-main__playicon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #ffffff;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    pointer-events: none;
    z-index: 5;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: background 0.18s ease, transform 0.18s ease;
}
.murphy-gallery-main.is-video .murphy-gallery-main__playicon {
    display: flex;
}
.murphy-gallery-main:hover .murphy-gallery-main__playicon {
    background: #F2A900;
    color: #252022;
    transform: translate(-50%, -50%) scale(1.08);
}
/* Top-right toolbar (fullscreen / zoom / share / close) */
.murphy-lightbox__toolbar {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.murphy-lightbox__tool,
.murphy-lightbox__nav {
    position: relative;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    background: rgba(20, 20, 20, 0.55) !important;
    color: #ffffff !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px;
    min-height: 44px;
    padding: 0 !important;
    border-radius: 6px !important;
    cursor: pointer;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1;
    text-decoration: none;
    overflow: visible;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}
.murphy-lightbox__nav {
    position: absolute !important;
    width: 52px !important;
    height: 52px !important;
    min-width: 52px;
    min-height: 52px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
}
.murphy-lightbox__tool:hover,
.murphy-lightbox__nav:hover {
    background: #F2A900 !important;
    color: #252022 !important;
    border-color: #F2A900 !important;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.55);
}
.murphy-lightbox__tool:hover .murphy-lightbox__svg path,
.murphy-lightbox__tool:hover svg path,
.murphy-lightbox__tool:hover svg circle,
.murphy-lightbox__tool.is-active .murphy-lightbox__svg path,
.murphy-lightbox__tool.is-active svg path,
.murphy-lightbox__tool.is-active svg circle {
    stroke: #252022 !important;
}
.murphy-lightbox__tool.is-active {
    background: #F2A900 !important;
    border-color: #F2A900 !important;
    color: #252022 !important;
}
.murphy-lightbox__tool:focus-visible,
.murphy-lightbox__nav:focus-visible {
    outline: 2px solid #F2A900;
    outline-offset: 3px;
}
.murphy-lightbox__svg {
    display: inline-block;
    width: 20px !important;
    height: 20px !important;
    flex-shrink: 0;
    pointer-events: none;
}
/* Toggle SVG visibility based on lightbox state. */
.murphy-lightbox__svg--exit,
.murphy-lightbox__svg--zoom-out { display: none; }
.murphy-lightbox.is-fullscreen .murphy-lightbox__fullscreen .murphy-lightbox__svg--enter { display: none; }
.murphy-lightbox.is-fullscreen .murphy-lightbox__fullscreen .murphy-lightbox__svg--exit  { display: inline-block; }
.murphy-lightbox.is-zoomed     .murphy-lightbox__zoom .murphy-lightbox__svg--zoom-in    { display: none; }
.murphy-lightbox.is-zoomed     .murphy-lightbox__zoom .murphy-lightbox__svg--zoom-out   { display: inline-block; }

.murphy-lightbox__icon {
    display: inline-block !important;
    color: inherit !important;
    line-height: 1 !important;
    pointer-events: none;
    font-weight: 700;
}
.murphy-lightbox__close .murphy-lightbox__icon {
    font-size: 28px !important;
    margin-top: -3px;
}
.murphy-lightbox__nav .murphy-lightbox__icon {
    font-size: 22px !important;
}
.murphy-lightbox__icon--prev { margin-left: -2px; }
.murphy-lightbox__icon--next { margin-right: -2px; }
.murphy-lightbox__prev { left: 20px;  top: 50%; transform: translateY(-50%); }
.murphy-lightbox__next { right: 20px; top: 50%; transform: translateY(-50%); }
.murphy-lightbox__prev:hover { transform: translateY(-50%) translateX(-2px); }
.murphy-lightbox__next:hover { transform: translateY(-50%) translateX(2px); }
.murphy-lightbox__prev:active { transform: translateY(-50%) scale(0.95); }
.murphy-lightbox__next:active { transform: translateY(-50%) scale(0.95); }
.murphy-lightbox__tool:hover { transform: translateY(-1px); }
.murphy-lightbox__tool:active { transform: scale(0.95); }

/* Zoom state: image grows beyond viewport, stage allows scroll. */
.murphy-lightbox.is-zoomed .murphy-lightbox__stage {
    overflow: auto;
    max-width: 100%;
    max-height: 100%;
    cursor: grab;
}
.murphy-lightbox.is-zoomed .murphy-lightbox__img {
    max-width: none;
    max-height: none;
    width: auto;
    height: auto;
    cursor: zoom-out;
}
.murphy-lightbox.is-zoomed .murphy-lightbox__counter { display: none; }

/* Toast (e.g. "Link copied"). */
.murphy-lightbox__toast {
    position: absolute;
    bottom: 24px;
    right: 24px;
    z-index: 5;
    background: rgba(20, 20, 20, 0.85);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 16px;
    border-radius: 4px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}
.murphy-lightbox__toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Print styles — hide UI controls that shouldn't appear on a printout.
   ========================================================================== */
@media print {
    .murphy-single-ctas,
    .murphy-single-utils,
    .contact-me-section,
    .murphy-loan-modal,
    .murphy-contact-modal,
    .murphy-watch-modal,
    .murphy-lightbox,
    .murphy-loading-overlay {
        display: none !important;
    }
    body.murphy-lightbox-open {
        overflow: visible !important;
    }
}
.murphy-lightbox__counter {
    position: absolute;
    bottom: -42px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    background: rgba(20, 20, 20, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 7px 16px;
    border-radius: 4px;
    white-space: nowrap;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}
.murphy-lightbox__counter .murphy-lightbox__current {
    color: #F2A900;
    margin-right: 2px;
}
.murphy-lightbox__counter .murphy-lightbox__total {
    opacity: 0.85;
    margin-left: 2px;
}
body.murphy-lightbox-open {
    overflow: hidden;
}
@media (max-width: 720px) {
    .murphy-lightbox { padding: 16px 12px; }
    .murphy-lightbox__toolbar { top: 12px; right: 12px; gap: 6px; }
    .murphy-lightbox__tool {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px;
        min-height: 38px;
    }
    .murphy-lightbox__nav {
        width: 42px !important;
        height: 42px !important;
        min-width: 42px;
        min-height: 42px;
    }
    .murphy-lightbox__svg { width: 17px !important; height: 17px !important; }
    .murphy-lightbox__close .murphy-lightbox__icon { font-size: 24px !important; }
    .murphy-lightbox__prev { left: 8px; }
    .murphy-lightbox__next { right: 8px; }
    .murphy-lightbox__img { max-height: calc(100vh - 100px); }
    .murphy-lightbox__toast { bottom: 16px; right: 16px; left: 16px; text-align: center; }
}
.murphy-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 0;
    color: #888;
    font-size: 16px;
}
/* ── Card ─────────────────────────────────────────────────── */
.murphy-card {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
}
.murphy-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
/* Card image */
.murphy-card__image-link {
    display: block;
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #ddd;
}
.murphy-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}
.murphy-card:hover .murphy-card__image { transform: scale(1.03); }
.murphy-card__image--placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d0d0d0, #b0b0b0);
}
/* Card body */
.murphy-card__body {
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}
/* Badges row */
.murphy-card__badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    align-items: center;
}

/* Badge pills */
.murphy-badge { padding: 4px 8px; display: inline-block; line-height: 1.15; font-size: var(--f14, 14px); font-weight: 500; } 
.murphy-badge--hold    { background: #C13737; color: #fff; }
.murphy-badge--green   { background: #2e7d32; color: #fff; }
.murphy-badge--red     { background: #b71c1c; color: #fff; }
.murphy-badge--blue    { background: var(--success, #008345); color: #fff; }
.murphy-badge--pending { background: #e65100; color: #fff; }
.murphy-badge--grey    { background: #757575; color: #fff; }
.murphy-badge--special { background: rgba(242, 169, 0, 1); color: #fff; font-size: 10px; }

/* ──────────────────────────────────────────────────────────────────────────
   Listing card price pill — green-bordered white box. Used for both single
   prices and the reduced (was+now) variant. Clearance flips it red.
   ────────────────────────────────────────────────────────────────────────── */
/* .murphy-price-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border: 1.5px solid #1a8042;
    border-radius: 4px;
    background: #ffffff;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    white-space: nowrap;
    vertical-align: middle;
    box-sizing: border-box;
    min-height: 36px;
} */
.murphy-price-pill--reduced {
    gap: 8px;
}
.murphy-price-pill--reduced .murphy-price-pill__was {
    color: #4a4a4a;
    text-decoration: line-through;
    font-weight: 600;
    font-size: 14px;
}
/* .murphy-price-pill--reduced .murphy-price-pill__now {
    color: #1a8042;
    font-weight: 800;
    font-size: 16px;
} */

/* "NEW LOWER PRICE" green badge — pairs with reduced pill. */
/* .murphy-badge--lower-price {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1a8042;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 12px;
    padding: 8px 16px;
    border-radius: 4px;
    line-height: 1;
    vertical-align: middle;
    text-align: center;
    box-sizing: border-box;
    min-height: 36px;
    margin-left: 6px;
    white-space: nowrap;
} */

/* CLEARANCE red treatment — pill border red, "now" price red, badge solid red. */
.murphy-price-pill--clearance {
    border-color: #c0392b;
}
.murphy-price-pill--clearance.murphy-price-pill--reduced .murphy-price-pill__now {
    color: #c0392b;
}

/* CONSIGNMENT blue treatment — additive override for consignment listing cards.
   Pill: white background, blue border + blue text. Badge: solid blue, white text.
   Works for both single-price ($1,050) and was/now reduced variants. */
.murphy-price-pill--consignment {
    border-color: #1d3a8a;
    color: #1d3a8a;
}
.murphy-price-pill--consignment.murphy-price-pill--reduced .murphy-price-pill__now {
    color: #1d3a8a;
}
.murphy-badge--consignment {
    background: #1d3a8a;
    color: #ffffff;
}

/* HOLD red treatment — same pattern as consignment, red theme. */
.murphy-price-pill--hold {
    border-color: #c0392b;
    color: #c0392b;
}
.murphy-price-pill--hold.murphy-price-pill--reduced .murphy-price-pill__now {
    color: #c0392b;
}

/* RENTAL green treatment — same pattern as consignment, green theme. */
.murphy-price-pill--rental {
    border-color: #27ae60;
    color: #27ae60;
}
.murphy-price-pill--rental.murphy-price-pill--reduced .murphy-price-pill__now {
    color: #27ae60;
}
.murphy-badge--rental {
    background: #27ae60;
    color: #ffffff;
}
/* .murphy-badge--clearance {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #c0392b;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 12px;
    padding: 8px 16px;
    border-radius: 4px;
    line-height: 1;
    vertical-align: middle;
    text-align: center;
    box-sizing: border-box;
    min-height: 36px;
    margin-left: 6px;
    white-space: nowrap;
} */

/* Larger pill on the single equipment page. */
.murphy-price-pill--lg {
    padding: 10px 18px;
    font-size: 18px;
    border-radius: 6px;
}
.murphy-price-pill--lg.murphy-price-pill--reduced {
    gap: 12px;
}
.murphy-price-pill--lg .murphy-price-pill__was { font-size: 16px; }
.murphy-price-pill--lg .murphy-price-pill__now { font-size: 22px; }
.murphy-single-price-row .murphy-badge--lower-price,
.murphy-single-price-row .murphy-badge--clearance {
    padding: 10px 18px;
    font-size: 13px;
}
.murphy-badge--default { background: #555; color: #fff; }
/* Title */
.murphy-card__title {
    font-size: 15px;
    font-weight: 700;
    margin: 4px 0 0;
    line-height: 1.3;
}
.murphy-card__title a {
    color: #111;
    text-decoration: none;
}
.murphy-card__title a:hover { color: #0073aa; }
/* Location */
.murphy-card__location {
    font-size: 13px;
    color: #555;
    margin: 0;
}
/* Meta: hours + serial */
.murphy-card__meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: #666;
    flex-wrap: wrap;
}
/* Action buttons */
.murphy-card__actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

/* ── Pagination ───────────────────────────────────────────── */
.murphy-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-top: var(--sp80);
    padding-top: 16px;
    border-top: 2px solid var(--darkGray);
    flex-wrap: wrap;
}
.murphy-pagination.is-loading {
    opacity: 0.6;
    pointer-events: none;
}
.murphy-pagination .page-numbers{display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;}
.murphy-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--darkGray);
    font-weight: 500;
    font-size: 16px;
}
.murphy-page-btn:hover:not(:disabled) {color: var(--text);}
.murphy-page-btn.active {
    color: var(--text);
}
.murphy-page-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.murphy-page-first,
.murphy-page-last,
.murphy-page-next {/* font-size: 13px; *//* color: #555; */}

.murphy-page-first{margin-right: auto;}
.murphy-page-last{margin-left: auto;}
.murphy-page-first[aria-disabled="true"],
.murphy-page-next[aria-disabled="true"],
.murphy-page-last[aria-disabled="true"]{
    opacity: 0.35;
    pointer-events: none;
}
/* ── Back link ────────────────────────────────────────────── */
.murphy-back-link {
    display: inline-block;
    font-size: 13px;
    color: #555;
    text-decoration: none;
    margin-bottom: 12px;
}
.murphy-back-link:hover { color: #000; text-decoration: underline; }
/* ══════════════════════════════════════════════════════════
   DETAIL PAGE
   ══════════════════════════════════════════════════════════ */
.murphy-detail__title {
    font-size: 26px;
    font-weight: 800;
    margin: 8px 0 4px;
}
.murphy-detail__subtitle {
    font-size: 15px;
    color: #555;
    margin: 0 0 20px;
}
.murphy-detail__layout {
    display: grid;
    grid-template-columns: 60% 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 20px;
}
@media (max-width: 768px) {
    .murphy-detail__layout { grid-template-columns: 1fr; }
}
/* Gallery */
.murphy-gallery__main {
    position: relative;
    background: #000;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.murphy-gallery__main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.murphy-gallery__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}
.murphy-gallery__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.45);
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.2s;
}
.murphy-gallery__arrow:hover { background: rgba(0,0,0,0.7); }
.murphy-gallery__arrow--prev { left: 10px; }
.murphy-gallery__arrow--next { right: 10px; }
.murphy-gallery__thumbs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
}


.murphy-gallery__thumb {
    width: 70px;
    height: 52px;
    object-fit: cover;
    border-radius: 3px;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: 0.75;
    transition: opacity 0.2s, border-color 0.2s;
}
.murphy-gallery__thumb:hover,
.murphy-gallery__thumb.active {
    opacity: 1;
    border-color: #222;
}
/* Detail info panel */
.murphy-detail__price-block {
    margin-bottom: 8px;
}
.murphy-detail__price {
    font-size: 26px;
    font-weight: 800;
    color: #111;
}
.murphy-detail__was-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
    margin-right: 8px;
}
.murphy-detail__price--coming {
    font-size: 22px;
    color: #666;
    font-style: italic;
}
.murphy-detail__location-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
    color: #555;
    margin-bottom: 18px;
}
.murphy-detail__phone a { color: #222; text-decoration: none; font-weight: 600; }
.murphy-detail__phone a:hover { text-decoration: underline; }
.murphy-detail__ctas {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
}
.murphy-detail__btn {
    display: block;
    text-align: center;
    padding: 13px 18px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 3px;
    text-decoration: none;
    transition: opacity 0.2s;
}
.murphy-detail__btn:hover { opacity: 0.85; }
.murphy-detail__btn--primary   { background: #f5c518; color: #111; }
.murphy-detail__btn--secondary { background: #f5c518; color: #111; }
.murphy-detail__specs {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin-bottom: 18px;
}
.murphy-detail__specs tr { border-bottom: 1px solid #eee; }
.murphy-detail__specs th {
    text-align: left;
    padding: 9px 12px 9px 0;
    color: #555;
    font-weight: 600;
    white-space: nowrap;
    width: 140px;
}
.murphy-detail__specs td {
    padding: 9px 0;
    color: #111;
}
.murphy-detail__links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 13px;
    margin-top: 8px;
}
.murphy-util-link {
    color: #0073aa;
    text-decoration: none;
}
.murphy-util-link:hover { text-decoration: underline; }
/* Bottom: description + features */
.murphy-detail__bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}
@media (max-width: 640px) { .murphy-detail__bottom { grid-template-columns: 1fr; } }
.murphy-detail__description h3,
.murphy-detail__features h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 14px;
}

/* =========================================
   SINGLE EQUIPMENT PAGE
   ========================================= */



/* Two-column layout */
.murphy-single-layout { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap40, 40px); }

@media (max-width: 767px) {
    .murphy-single-layout { grid-template-columns: 1fr; }
    .murphy-pagination .page-numbers, .murphy-pagination{gap: 12px;}
}

/* Gallery */
.murphy-single-gallery { position: relative; }

.murphy-gallery-main { position: relative; background-color: var(--lightGray, #f5f5f5); overflow: hidden; margin-bottom: 24px; padding-top: 60.5%; }
.murphy-gallery-main-img { position: absolute; top:0; left:0; width: 100%; height: 100%; max-width: inherit; min-width: 100%; object-fit: cover; object-position: center; display: block; }
.murphy-gallery-main-img--media { cursor: pointer; }
.murphy-gallery-nav { position: absolute; top: 50%; transform: translateY(-50%); background-color: oklch(from var(--text, #252022) l c h / 0.6) !important; color: var(--white, #ffffff) !important; border: 0 !important; line-height: 1; padding: 8px 14px !important; cursor: pointer; z-index: 10; }
.murphy-gallery-nav svg{display: block;}
.murphy-gallery-prev { left: 0px; }
.murphy-gallery-next { right: 0px; }
.murphy-gallery-nav:hover { background-color:var(--primary) !important; color:var(--text) !important; }

.murphy-gallery-thumbs { display: flex; gap: 24px; flex-wrap: wrap;    position: relative; }
.murphy-gallery-thumbs .galleryThumb{flex: 0 0 calc(33.3333% - 16px); position: relative; overflow: hidden;padding-top: 18.72%;}
.murphy-gallery-thumb { height: 100%; width: 100%; max-width: inherit; min-width: 100%; position: absolute; left: 0; top:0; object-fit: cover; object-position: center; cursor: pointer; border: 0; border-radius: 0px; }
.murphy-gallery-thumb:hover,
.murphy-gallery-thumb.active { opacity: 1; border-color: #2c6e3f; }
.murphy-gallery-thumb__overlay {background-color: oklch(from var(--text, #252022) l c h / 0.6) !important;flex: 0 0 100%;height: 100%;position: absolute;right: 0;width: calc(33.3333% - 16px);color: #ffffff;display: flex;align-items: center;padding: 15px;justify-content: center;text-align: center;line-height: 1.1;font-weight: 500;font-size: var(--f14); opacity: 0; transition: all 0.3s ease-in-out; cursor: pointer;}
.murphy-gallery-thumb__overlay:hover{opacity: 1;}
.murphy-gallery-placeholder { background: #f0f0f0; height: 300px; display: flex; align-items: center; justify-content: center; color: #999; border-radius: 4px; }
/* Details panel */

.murphy-single-price-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 24px; }
.murphy-single-price { font-size: var(--f20); font-weight: 700; background: var(--success); color: var(--white, #ffffff); padding: 12px 16px; line-height: 1; letter-spacing: 0.02em;}
/* Clearance variant: same shape, red background. */
.murphy-single-price.murphy-single-price--clearance { background: #c0392b; }
/* Consignment variant: same shape, deep-blue background (matches listing card). */
.murphy-single-price.murphy-single-price--consignment { background: #1d3a8a; }
/* HOLD variant: same shape, red background (matches listing pill border color). */
.murphy-single-price.murphy-single-price--hold { background: #c0392b; }
/* RENTAL variant: same shape, green background (matches listing pill border color). */
.murphy-single-price.murphy-single-price--rental { background: #27ae60; }
.murphy-single-orig-price { font-size: var(--f20, 20px); color: var(--darkGray, #737373); line-height: 0.8;text-transform: uppercase; font-weight: 500;letter-spacing: 0.01em;}
.murphy-single-orig-price .price-linethrough{ text-decoration: line-through;}

.murphy-single-badge-row { margin-bottom: 12px; }

.murphy-single-title { text-transform: inherit !important; line-height: 1.2 !important;}
.murphy-single-location { color: var(--darkGray, #737373); font-size: var(--h3); margin: 0 0 var(--sp40, 40px) 0; letter-spacing: -0.02em; }

/* Specs table */
.murphy-single-specs { width: 100%; display:flex; flex-wrap:wrap; gap:12px;margin-bottom: var(--sp70);}
.murphy-single-specs .specs-box { padding: 8px 16px; border: 2px solid var(--lightGray);text-align: center; color:var(--text, #252022); font-weight: 500;}
.murphy-single-specs .specs-box p{margin-bottom: 0;line-height: 1.36;letter-spacing: 0.016em;}
.murphy-single-specs .specs-box .value{color:var(--darkGray, #737373);}

/* CTA buttons */
.murphy-single-ctas { display: flex; gap: 12px; flex-wrap: wrap;}
.murphy-single-ctas .btn{border:0 !important;padding: 12px 24px;cursor: pointer;}
.murphy-single-ctas .btn-secondary:hover{background-color: var(--primary, #f2a900) !important;}
.murphy-single-ctas .murphy-cta-btn--watch { background: var(--lightGray) !important; color: var(--darkGray) !important; border-color: var(--lightGray) !important; display: flex; align-items: center; justify-content: center; gap: 8px;min-width: 33%; cursor: pointer;}
.murphy-single-ctas .murphy-cta-btn--watch:hover { background: #333; }

/* Utility links (Print / Loan / Share) */
.murphy-single-utils { display: flex; flex-wrap: wrap; gap: 10px var(--gap40); margin-top: 24px; }
.murphy-util-link{ background-color: transparent !important; border: 0 !important; padding: 0 !important; cursor: pointer; color: var(--darkGray) !important; display: inline-flex; align-items: center; gap: 8px; text-decoration: none !important;line-height: 1.5 !important; font-size: var(--f16) !important; font-weight: 500 !important;}
.murphy-util-link:hover {color: var(--primary) !important;}

/* Description + Key Features section */
.murphy-single-info {background-color: var(--lightGray, #f5f5f5); padding: var(--sp80, 40px) 0;}
.murphy-single-info .container{display: flex; flex-wrap: wrap; gap:48px;}


.murphy-single-description{display: flex; flex-direction: column; gap:16px;flex:0 0 100%; max-width: 100%;}
.murphy-single-description p { font-size: var(--f16, 16px); color: var(--text, #252022); line-height: 1.5;letter-spacing: 0.01em; }

.murphy-single-features{max-width: 442px;}
.murphy-single-info .single-features-title{font-weight: 500;letter-spacing: -0.02em;}
.murphy-single-info .h4{border-bottom: 1px solid var(--darkGray, #737373); padding-bottom: 24px;margin-bottom: 24px;}

/* Key features list */
.murphy-features-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap:24px;}
.murphy-features-list li {font-size: 14px; font-weight: 500; color: #0C0E0F; letter-spacing: 0.01em; flex: 0 0 100%; max-width: calc(50% - 15px); }


.murphy-reports-body { padding: 24px; background-color: var(--white, #ffffff); }
.murphy-reports-body p { margin-bottom: 0; font-size: 14px; font-weight: 500; line-height: 1.15; color: var(--darkGray, #737373); }
.murphy-reports-body a { color: var(--text); text-decoration: none; line-height: 1.15; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; }
.murphy-reports-body .doc-icon{color:var(--primary, #F2A900); }
.murphy-reports-body a:hover { color: var(--primary, #F2A900); }

/* Photos grid */
.murphy-single-photos {padding: var(--sp80, 40px) 0; }
.murphy-single-photos .murphy-photos-panel { margin-top: var(--sp40); }
.murphy-single-photos .murphy-photos-toggle { background-color: transparent !important; border: 0 !important; padding: 0 !important; display: inline-flex; gap: 12px; align-items: center;cursor: pointer; }
.murphy-single-photos .murphy-photos-toggle .murphy-photos-toggle__icon{width:30px; height:30px; border-radius:50%; background-color: var(--darkGray); position: relative;display: inline-flex;}
.murphy-single-photos .murphy-photos-toggle .murphy-photos-toggle__icon::before, .murphy-single-photos .murphy-photos-toggle .murphy-photos-toggle__icon:after{content:"";width: 12px;height:3px;background-color: var(--white, #ffffff);display: block;margin: auto;}
.murphy-single-photos .murphy-photos-toggle .murphy-photos-toggle__icon:after{position: absolute;left: 50%;top: 50%;transform: translate(-50%, -50%);width: 3px;height: 12px;}
.murphy-single-photos .murphy-photos-toggle .murphy-photos-toggle__label{font-size: var(--h2); font-weight: 700; color:var(--text);}
 .murphy-single-photos .murphy-photos-toggle[aria-expanded="true"] .murphy-photos-toggle__icon:after{opacity: 0;}
.murphy-photos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

@media (max-width: 1024px) {
.murphy-gallery-thumbs{gap:12px;}
.murphy-gallery-main{margin-bottom: 12px;}
.murphy-gallery-thumbs .galleryThumb{flex: 0 0 calc(33.3333% - 8px);}
.murphy-gallery-thumb__overlay{width: calc(33.3333% - 8px);}
}
@media (max-width: 991px) {
.murphy-photos-grid { grid-template-columns: repeat(2, 1fr); gap: 16px;}
}
@media (max-width: 767px) {
    .murphy-single-info .container{flex-direction: column;gap:30px;}
     .murphy-single-features{max-width: 100%;}
}

@media (max-width: 575px) {
    .murphy-photos-grid { grid-template-columns: repeat(1, 1fr);}
    .murphy-gallery-thumb__overlay{padding: 10px;}
}

/* Print: don't append long URLs under photo links */
@media print {
	.murphy-photo-item::after,
	.murphy-photo-item *::after {
		content: "" !important;
	}

	/* Print layout: keep photos in 3 columns (avoid auto 4-up from other print CSS) */
	body .murphy-photos-grid,
	html body .murphy-photos-grid,
	.murphy-single-photos .murphy-photos-grid {
		grid-template-columns: repeat(3, 1fr) !important;
		gap: 16px !important;
	}

	/* Print: avoid cropped thumbnails (remove fixed aspect-ratio box) */
	.murphy-photo-item {
		padding-top: 0 !important;
		height: auto !important;
		overflow: visible !important;
		page-break-inside: avoid;
		break-inside: avoid;
	}
	.murphy-photo-item img {
		position: static !important;
		width: 100% !important;
		height: auto !important;
		min-width: 0 !important;
		max-width: 100% !important;
		object-fit: contain !important;
	}
}
.murphy-photo-item {
    display: block;
    overflow: hidden;
    position: relative;
    padding-top:60.6%;
}
.murphy-photo-item img {
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    position: absolute;
    max-width: inherit;
    min-width: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s;
}
.murphy-photo-item:hover img { transform: scale(1.04); }

/* Disclaimer */
.murphy-single-disclaimer { margin-top: var(--sp40, 40px); }
.murphy-single-disclaimer p { font-size: var(--f14); color: var(--darkGray, #737373);line-height: 1.145; font-style: italic;letter-spacing: 0.01em;}
.murphy-single-disclaimer p:empty{display: none;}

/* Loan calculator modal */
.murphy-loan-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.murphy-loan-modal.is-open {
    display: flex;
}
.murphy-loan-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}
.murphy-loan-modal__dialog {
    position: relative;
    max-width: 520px;
    width: 100%;
    background: #fff;
    padding: var(--sp40, 20px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    z-index: 1;
}
.murphy-loan-modal__close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #555;
}
.murphy-loan-modal__intro {
    font-size: 13px;
    color: #555;
    margin: 4px 0 16px;
}
.murphy-loan-field {
    margin-bottom: 14px;
}
.murphy-loan-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
}
.murphy-loan-field input[type="number"] {
    width: 100%;
    padding: 7px 9px;
    border-radius: 3px;
    border: 1px solid #ccc;
    font-size: 13px;
}
.murphy-loan-field--inline {
    display: flex;
    gap: 14px;
}
.murphy-loan-field--inline > div {
    flex: 1;
}
.murphy-loan-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 10px 0 12px;
}
.murphy-loan-submit {
    background: #f5c518;
    color: #111;
    border: none;
    padding: 8px 16px;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}
.murphy-loan-submit:hover {
    opacity: 0.9;
}
.murphy-loan-more-link {
    font-size: 13px;
}
.murphy-loan-error {
    font-size: 12px;
    color: #cc0000;
    min-height: 16px;
}
.murphy-loan-results {
    font-size: 13px;
    margin-bottom: 10px;
}
.murphy-loan-disclaimer {
    font-size: 11px;
    color: #777;
    line-height: 1.5;
}

/* Contact form modal (Gravity Forms) */
.murphy-contact-modal { position: relative; display: none; align-items: center; justify-content: center; top: 0; background-color: var(--lightGray); }
.murphy-contact-modal.is-open { display: flex; }
.murphy-contact-modal__dialog { position: relative; width: 100%; z-index: 1; padding: var(--sp60, 60px) 0; }
.murphy-contact-modal__close {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0 !important;
    background-color: transparent !important;
    border: 0 !important;
    cursor: pointer;
    color: var(--darkGray, #737373) !important;
}
.murphy-contact-modal__close:hover{ color: var(--primary, #F2A900) !important;}


/* Watch form modal (Gravity Forms) */
.murphy-watch-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.murphy-watch-modal.is-open {
    display: flex;
}
.murphy-watch-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
}
.murphy-watch-modal__dialog {
    position: relative;
    max-width: 720px;
    width: 100%;
    background: #fff;
    padding: var(--sp40, 20px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    z-index: 1;
}
.murphy-watch-modal__close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #555;
}
.murphy-watch-modal__body {
    margin-top: 8px;
}
