/* ──────────────────────────────────────────────
   Theme tokens
   Applied by wrapping shortcode output in
   .ho-theme-light / .ho-theme-dark.
   ────────────────────────────────────────────── */
.ho-theme-light,
.ho-theme-dark {
    --ho-bg:          transparent;
    --ho-card-bg:     #ffffff;
    --ho-card-border: #e5e7eb;
    --ho-text:        #111827;
    --ho-muted:       #6b7280;
    --ho-heading:     #1d2327;
    --ho-accent:      #2271b1;
    --ho-price:       #111827;
    --ho-placeholder: #f6f7f7;
    --ho-shadow:      0 2px 5px rgba(0, 0, 0, .06);
    --ho-shadow-hover:0 4px 14px rgba(0, 0, 0, .10);
    --ho-empty-bg:    #f9fafb;
    --ho-input-bg:    #ffffff;
    --ho-input-border:#d1d5db;
}

.ho-theme-dark {
    --ho-card-bg:     #1f2329;
    --ho-card-border: #2f343c;
    --ho-text:        #e5e7eb;
    --ho-muted:       #9ca3af;
    --ho-heading:     #f3f4f6;
    --ho-accent:      #60a5fa;
    --ho-price:       #f9fafb;
    --ho-placeholder: #2a2f37;
    --ho-shadow:      0 2px 5px rgba(0, 0, 0, .5);
    --ho-shadow-hover:0 6px 18px rgba(0, 0, 0, .6);
    --ho-empty-bg:    #1a1d22;
    --ho-input-bg:    #1a1d22;
    --ho-input-border:#3a4049;
}

.ho-public-root,
.ho-for-sale-list {
    color: var(--ho-text);
    background: var(--ho-bg);
}

.ho-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.ho-item {
    position: relative;
    min-width: 200px;
}

.ho-item-count {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    z-index: 100;
}

.ho-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.ho-item .ho-slideshow:hover img {
    transform: scale(1.05);
}

.ho-item .ho-slideshow {
    overflow: hidden;
    border-radius: 4px;
}

.ho-slideshow,
.ho-lightbox-trigger {
    cursor: pointer;
}

.ho-category-section {
    margin-bottom: 40px;
}

.ho-category-section h4 {
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 18px;
}

.ho-item h4 {
    min-height: 50px;
    margin: 10px 0 8px 0;
    font-size: 15px;
    line-height: 1.3;
}

.ho-item-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}

.ho-daily-rate,
.ho-sale-price {
    margin-left: auto;
    text-align: right;
    font-family: monospace;
    font-size: 14px;
    font-weight: bold;
    color: var(--ho-price, #111);
    background: transparent;
    padding: 0;
    border-radius: 0;
}

.ho-show-more {
    display: inline-block;
    padding: 8px 16px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    font-size: 13px;
}

.ho-show-more:hover {
    background: #135e96;
}

.ho-full-description {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 14px;
}

.ho-equipment-list {
}

.ho-search-bar {
    margin: 0 0 20px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.ho-search-bar .ho-price-info {
    margin-right: auto;
}

.ho-search-bar #ho-search-input {
    margin-left: auto;
}

.ho-search-bar input {
    padding: 5px;
    width: 300px;
}

#ho-rental-days {
    width: 60px;
    margin-right: 10px;
}

#ho-download-pdf {
    margin-right: 10px;
    padding: 5px 10px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#ho-download-pdf:hover {
    background: hsl(0, 0%, 50%);
}

.ho-placeholder {
    width: 100%;
    height: 200px;
    background-color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}
.ho-placeholder svg {
    width: 100px;
    height: 100px
}
.ho-lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    inset: 0;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
    max-width: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.ho-lightbox-content {
    position: relative;
    padding: 20px;
    width: auto;
    max-width: min(800px, 92vw);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    background-color: #fff;
    border-radius: 8px;
    box-sizing: border-box;
}

.ho-lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

.ho-lightbox-close {
    position: absolute;
    top: 8px;
    right: 12px;
    color: #666;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    z-index: 1;
    transition: color .15s;
}

.ho-lightbox-close:hover {
    color: #000;
}


.ho-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1em 0;
}

.ho-specs-table tr:nth-child(even) {
    background: rgba(0,0,0,0.03);
}

.ho-specs-table td {
    padding: 0.5em;
    vertical-align: top;
}

.ho-spec-label {
    font-weight: bold;
    width: 40%;
}

.ho-spec-value {
    width: 60%;
}

.ho-pagination {
    text-align: center;
    margin: 20px 0;
}

.ho-pagination a,
.ho-pagination span {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 2px;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
}

.ho-pagination a:hover {
    background-color: #f0f0f0;
}

.ho-pagination .current {
    background-color: #333;
    color: #fff;
    border-color: #333;
}
.ho-slideshow {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.ho-slideshow img {
    display: none;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.ho-slideshow-prev, .ho-slideshow-next, .ho-lightbox-prev, .ho-lightbox-next  {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 18px;
    cursor: pointer;
    user-select: none;
    z-index: 10;
    text-decoration: none;
    
}

.ho-slideshow-prev {
    left: 10px;
}

.ho-slideshow-next {
    right: 10px;
}

.ho-lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    inset: 0;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.ho-lightbox-content {
    position: relative;
    padding: 20px;
    width: auto;
    max-width: min(800px, 92vw);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    background-color: #fff;
    border-radius: 8px;
    box-sizing: border-box;
}

.ho-lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    width: auto;
    height: auto;
    object-fit: contain;
    background: #f5f5f5;
}

.ho-lightbox-close {
    position: absolute;
    top: 8px;
    right: 12px;
    color: #666;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    z-index: 1;
    transition: color .15s;
}

.ho-lightbox-close:hover {
    color: #000;
}

.ho-lightbox-slideshow {
    position: relative;
    text-align: center;
}

.ho-lightbox-slides img {
    max-width: 100%;
    max-height: 70vh;
    width: auto;
    height: auto;
    display: none;
}


.ho-lightbox-prev {
    left: 10px;
}

.ho-lightbox-next {
    right: 10px;
}

.ho-lightbox-details {
    margin-top: 20px;
}

.ho-lightbox-details h2 {
    margin: 0 0 10px;
}

.ho-lightbox-details p {
    margin: 5px 0;
}

/* View Toggle */
.ho-view-toggle {
    display: flex;
    gap: 4px;
    margin-right: 15px;
}

.ho-view-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    color: #666;
    transition: all 0.2s ease;
}

.ho-view-btn:hover {
    background: #e0e0e0;
    color: #333;
}

.ho-view-btn.active {
    background: #333;
    border-color: #333;
    color: #fff;
}

.ho-view-btn svg {
    display: block;
}

/* View Toggle - Show/Hide Grid and List */
.ho-grid-view {
    display: grid;
}

.ho-list-view {
    display: none;
}

.ho-equipment-list.list-mode .ho-grid-view {
    display: none;
}

.ho-equipment-list.list-mode .ho-list-view {
    display: table;
}

/* In list mode the bundle card grid hides; bundles render as table rows
   that open a lightbox showing the expanded bundle card. */
.ho-equipment-list.list-mode .ho-bundles-list { display: none; }
.ho-bundles-list-table { width: 100%; margin-top: 8px; }
.ho-bundle-row .ho-bundle-row-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ho-muted, #9ca3af);
}
.ho-bundle-row .ho-bundle-row-icon svg { width: 16px; height: 16px; }
.ho-bundle-row .ho-bundle-row-meta {
    color: var(--ho-muted, #6b7280);
    font-size: 12px;
    margin-left: 8px;
}

/* Lightbox bundle view — cap the cloned bundle card so it fits. */
.ho-lightbox-bundle-view .ho-bundle-card { box-shadow: none; margin: 0; }
.ho-lightbox-bundle-view .ho-bundle-items { display: block; }

/* List View Table Styles */
.ho-items-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.ho-items-table tr:nth-child(even) {
    background: #f9f9f9;
}

.ho-items-table tr:hover {
    background: #f0f0f0;
}

.ho-items-table td {
    padding: 5px 10px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.ho-table-qty {
    width: 35px;
    color: #999;
    text-align: right;
    padding-right: 5px;
}

.ho-table-name {
    cursor: pointer;
}

.ho-table-name:hover {
    text-decoration: underline;
}

.ho-table-price {
    width: 80px;
    text-align: right;
    white-space: nowrap;
    font-family: monospace;
}

/* Bundle Section */
.ho-bundles-section {
    margin-bottom: 40px;
}

.ho-bundles-heading {
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.ho-bundles-list {
    display: grid;
    /* Auto-fill so cards re-flow to 1, 2, or 3 columns based on container
       width — the catalogue is often dropped into narrow content areas
       (page builders, sidebars, etc.) where a fixed 2-col layout overflowed. */
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 20px;
}

/* Bundle Card - Two Column Layout */
.ho-bundle-card {
    border: 1px solid var(--ho-card-border, #ddd);
    border-radius: 8px;
    background: var(--ho-card-bg, #fff);
    color: var(--ho-text, #111827);
    overflow: hidden;
    box-shadow: var(--ho-shadow, 0 2px 5px rgba(0, 0, 0, .06));
}

.ho-bundle-main {
    display: grid;
    /* minmax(0, 1fr) on the info side lets text actually wrap inside the
       grid cell instead of pushing the column wider than its allocation. */
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 0;
}

/* Bundle Collage - Square */
.ho-bundle-collage {
    position: relative;
    width: 180px;
    height: 180px;
    background: var(--ho-placeholder, #f5f5f5);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ho-collage-img {
    position: absolute;
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

/* Position images in a scattered pattern */
.ho-collage-img:nth-child(1) { left: 8%; top: 10%; transform: rotate(-8deg); }
.ho-collage-img:nth-child(2) { left: 50%; top: 5%; transform: rotate(5deg); }
.ho-collage-img:nth-child(3) { left: 15%; top: 50%; transform: rotate(-3deg); }
.ho-collage-img:nth-child(4) { left: 52%; top: 52%; transform: rotate(10deg); }
.ho-collage-img:nth-child(5) { left: 2%; top: 55%; transform: rotate(-12deg); }
.ho-collage-img:nth-child(6) { left: 35%; top: 28%; transform: rotate(7deg); }

/* Hover effect - images scatter outward */
.ho-bundle-collage:hover .ho-collage-img:nth-child(1) { transform: translate(-8px, -8px) rotate(-15deg) scale(1.05); }
.ho-bundle-collage:hover .ho-collage-img:nth-child(2) { transform: translate(8px, -8px) rotate(12deg) scale(1.05); }
.ho-bundle-collage:hover .ho-collage-img:nth-child(3) { transform: translate(-6px, 6px) rotate(-8deg) scale(1.05); }
.ho-bundle-collage:hover .ho-collage-img:nth-child(4) { transform: translate(8px, 8px) rotate(15deg) scale(1.05); }
.ho-bundle-collage:hover .ho-collage-img:nth-child(5) { transform: translate(-10px, 4px) rotate(-18deg) scale(1.05); }
.ho-bundle-collage:hover .ho-collage-img:nth-child(6) { transform: translate(4px, -4px) rotate(12deg) scale(1.05); }

.ho-bundle-collage:hover .ho-collage-img {
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

.ho-collage-placeholder {
    color: var(--ho-muted, #9ca3af);
    opacity: 0.6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.ho-collage-placeholder svg {
    width: 64px;
    height: 64px;
    display: block;
}

/* Bundle Info - Right Column */
.ho-bundle-info {
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    min-width: 0; /* let descendants wrap instead of overflowing the column */
}
.ho-bundle-description,
.ho-bundle-title { word-wrap: break-word; overflow-wrap: anywhere; }

.ho-bundle-title {
    margin: 0 0 12px 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--ho-heading, #1d2327);
}

.ho-bundle-description {
    margin: 0 0 15px 0;
    color: var(--ho-muted, #555);
    font-size: 14px;
    line-height: 1.5;
    flex-grow: 1;
}

.ho-bundle-pricing {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 15px;
}

.ho-bundle-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--ho-price, #333);
}

.ho-bundle-savings {
    background: #46b450;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.ho-bundle-original {
    font-size: 13px;
    color: var(--ho-muted, #888);
    text-decoration: line-through;
}

.ho-show-bundle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--ho-accent, #333);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: filter 0.15s ease, background 0.15s ease;
    align-self: flex-start;
}

.ho-show-bundle-btn:hover,
.ho-show-bundle-btn.active {
    filter: brightness(1.1);
}

.ho-show-bundle-btn.active .ho-bundle-btn-icon {
    transform: rotate(180deg);
}

.ho-bundle-btn-icon {
    font-size: 10px;
    transition: transform 0.2s ease;
}

/* Bundle Items - Expanded List */
.ho-bundle-items {
    display: none;
    border-top: 1px solid var(--ho-card-border, #eee);
    background: var(--ho-empty-bg, #fafafa);
    padding: 20px;
}

.ho-bundle-items.open {
    display: block;
}

.ho-bundle-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}

.ho-bundle-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: var(--ho-card-bg, #fff);
    border: 1px solid var(--ho-card-border, #e5e5e5);
    border-radius: 4px;
    color: var(--ho-text, #333);
}

.ho-bundle-item-img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.ho-bundle-item-placeholder {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ho-placeholder, #f0f0f0);
    border-radius: 4px;
    flex-shrink: 0;
    color: var(--ho-muted, #9ca3af);
}
.ho-bundle-item-placeholder svg {
    width: 22px;
    height: 22px;
    display: block;
}

.ho-bundle-item-info {
    flex: 1;
    font-size: 13px;
    line-height: 1.4;
    min-width: 0;
}

.ho-bundle-item-info strong {
    color: var(--ho-heading, #333);
}

.ho-bundle-item-price {
    font-size: 13px;
    font-weight: 600;
    color: var(--ho-muted, #666);
    white-space: nowrap;
}

/* Responsive - Stack on mobile */
@media (max-width: 600px) {
    .ho-bundle-main {
        grid-template-columns: 1fr;
    }

    .ho-bundle-collage {
        width: 100%;
        height: 200px;
    }

    .ho-collage-img {
        width: 80px;
        height: 80px;
    }

    .ho-bundle-items-grid {
        grid-template-columns: 1fr;
    }
}

/* For-sale listing (uses theme tokens) */
.ho-for-sale-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}
.ho-for-sale-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--ho-card-border);
    border-radius: 8px;
    overflow: hidden;
    background: var(--ho-card-bg);
    color: var(--ho-text);
    box-shadow: var(--ho-shadow);
    transition: box-shadow .2s, transform .2s;
}
.ho-for-sale-card:hover {
    box-shadow: var(--ho-shadow-hover);
    transform: translateY(-2px);
}
.ho-for-sale-image {
    aspect-ratio: 4 / 3;
    background: var(--ho-placeholder);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.ho-for-sale-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ho-for-sale-placeholder svg {
    width: 48px;
    height: 48px;
    opacity: .4;
    color: var(--ho-muted);
}
.ho-for-sale-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}
.ho-for-sale-cat {
    font-size: 11px;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--ho-muted);
}
.ho-for-sale-title {
    margin: 0;
    font-size: 16px;
    line-height: 1.3;
    color: var(--ho-heading);
}
.ho-for-sale-desc {
    margin: 0;
    font-size: 13px;
    color: var(--ho-muted);
    flex: 1;
}
.ho-for-sale-price {
    margin-top: 8px;
    font-size: 18px;
    font-weight: 600;
    color: var(--ho-price);
}
.ho-for-sale-poa {
    font-size: 14px;
    font-weight: 500;
    color: var(--ho-muted);
}
.ho-for-sale-empty {
    padding: 32px;
    text-align: center;
    color: var(--ho-muted);
    background: var(--ho-empty-bg);
    border-radius: 8px;
}

/* ──────────────────────────────────────────────
   Dark-theme overrides for the equipment_list output.
   Only scopes that are visible on the public page; does not touch
   lightbox / modals since those live outside .ho-public-root.
   ────────────────────────────────────────────── */
.ho-public-root.ho-theme-dark {
    color: var(--ho-text);
}
.ho-public-root.ho-theme-dark .ho-search-bar {
    background: transparent;
    color: var(--ho-text);
}
.ho-public-root.ho-theme-dark .ho-search-bar input {
    background: var(--ho-input-bg);
    border: 1px solid var(--ho-input-border);
    color: var(--ho-text);
}
.ho-public-root.ho-theme-dark .ho-item {
    color: var(--ho-text);
}
.ho-public-root.ho-theme-dark .ho-item h4 {
    color: var(--ho-heading);
}
.ho-public-root.ho-theme-dark .ho-item-rate {
    color: var(--ho-price);
}
.ho-public-root.ho-theme-dark .ho-item-count {
    background: rgba(255, 255, 255, .12);
    color: var(--ho-text);
}
.ho-public-root.ho-theme-dark .ho-category-heading {
    color: var(--ho-heading);
    border-bottom-color: var(--ho-card-border);
}
.ho-public-root.ho-theme-dark .ho-bundles-section {
    color: var(--ho-text);
}
.ho-public-root.ho-theme-dark .ho-items-table tr:nth-child(even) {
    background: rgba(255, 255, 255, .03);
}
.ho-public-root.ho-theme-dark .ho-items-table tr:hover {
    background: rgba(255, 255, 255, .06);
}
.ho-public-root.ho-theme-dark .ho-items-table td {
    color: var(--ho-text);
    border-color: var(--ho-card-border);
}
.ho-public-root.ho-theme-dark .ho-view-toggle button {
    background: var(--ho-card-bg);
    color: var(--ho-text);
    border-color: var(--ho-card-border);
}
.ho-public-root.ho-theme-dark .ho-view-toggle button.active {
    background: var(--ho-accent);
    color: #fff;
}

/* Free-tier attribution footer — rendered on the free plan only.
   Scoped inside .ho-public-root so it inherits the active theme's vars. */
.ho-public-root .ho-public-footer {
    margin: 24px 0 0;
    padding: 12px 0 0;
    border-top: 1px solid var(--ho-card-border, #e5e7eb);
    text-align: center;
    font-size: 12px;
    color: var(--ho-muted, #6b7280);
}
.ho-public-root .ho-public-footer a {
    color: var(--ho-muted, #6b7280);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}
.ho-public-root .ho-public-footer a:hover,
.ho-public-root .ho-public-footer a:focus {
    color: var(--ho-accent, #2271b1);
}

/* Themed lightbox (scoped under .ho-public-root so vars cascade) */
.ho-public-root .ho-lightbox-content {
    background-color: var(--ho-card-bg);
    color: var(--ho-text);
    box-shadow: var(--ho-shadow-hover);
}
.ho-public-root .ho-lightbox-content img {
    background: var(--ho-placeholder);
}
.ho-public-root .ho-lightbox-details h2 {
    color: var(--ho-heading);
}
.ho-public-root .ho-lightbox-details p {
    color: var(--ho-text);
}
.ho-public-root .ho-lightbox-details #ho-lightbox-rate {
    color: var(--ho-price);
    font-weight: 600;
}
.ho-public-root.ho-theme-dark .ho-lightbox {
    background-color: rgba(0, 0, 0, .85);
}
.ho-public-root.ho-theme-dark .ho-lightbox-close {
    color: #999;
}
.ho-public-root.ho-theme-dark .ho-lightbox-close:hover {
    color: #fff;
}
