/* ============================================================
   HOISTS PAGE STYLES - assets/css/hoists.css
   Ported from wimaccrane.eu/assets/css/style.css (.hoist-* block).
   Legacy CSS variables (--primary/--dark/--gray/--light-bg/--border)
   are SCOPED to .hoist-page so they don't collide with the new
   site globals (--accent/--dark-bg/--light-text/etc.).
   ============================================================ */


/* Legacy hoist tokens, scoped to .hoist-page so they don't leak globally. */
.hoist-page {
    --primary: #ffe900;
    --dark: #0a0a0a;
    --gray: #666;
    --light-bg: #f5f5f5;
    --border: #e5e5e5;
}

/* ======== PAGE HEADER ======== */
.hoist-hero {
    background: var(--dark);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.hoist-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255,233,0,0.05) 100%);
    pointer-events: none;
}

.hoist-hero-content {
    position: relative;
    z-index: 2;
}

.hoist-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.hoist-breadcrumb a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.hoist-breadcrumb a:hover {
    color: var(--primary);
}

.hoist-breadcrumb span {
    color: rgba(255,255,255,0.4);
    font-size: 12px;
}

.hoist-breadcrumb .current {
    color: #fff;
    font-weight: 600;
}

.hoist-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.hoist-hero h1 span {
    color: var(--primary);
}

.hoist-hero p {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    line-height: 1.7;
}

/* ======== MAIN LAYOUT ======== */
.hoist-main {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    padding: 60px 0 100px;
}

/* ======== SIDEBAR ======== */
.hoist-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.hoist-sidebar-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

/* Sidebar Navigation - Using DIV to avoid nav conflicts */
.hoist-sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hoist-sidebar-menu .hoist-menu-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: transparent;
    border: none;
    text-align: left;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0;
}

.hoist-sidebar-menu .hoist-menu-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.hoist-sidebar-menu .hoist-menu-btn::after {
    display: none !important;
}

.hoist-sidebar-menu .hoist-menu-btn:hover {
    background: var(--light-bg);
    padding-left: 18px;
}

.hoist-sidebar-menu .hoist-menu-btn.active {
    background: var(--dark);
    color: #fff;
}

.hoist-sidebar-menu .hoist-menu-btn.active::before {
    transform: scaleY(1);
}

.hoist-sidebar-menu .hoist-menu-btn .hoist-menu-icon {
    width: 20px;
    font-size: 14px;
    color: var(--primary);
}

.hoist-sidebar-menu .hoist-menu-btn.active .hoist-menu-icon {
    color: var(--primary);
}

/* Sidebar CTA */
.hoist-sidebar-cta {
    margin-top: 30px;
    padding: 25px;
    background: var(--light-bg);
    border: 1px dashed var(--border);
}

.hoist-sidebar-cta h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.hoist-sidebar-cta p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

.hoist-sidebar-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--primary);
    color: var(--dark);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.hoist-sidebar-cta a:hover {
    background: var(--dark);
    color: #fff;
}

/* Sidebar Close Button */
.hoist-sidebar-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--light-bg);
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--dark);
}

/* ======== CONTENT AREA ======== */
/* Fix for fixed header offset when scrolling */
.hoist-content {
    scroll-margin-top: 120px;
}

.hoist-panel {
    scroll-margin-top: 120px;
}

/* Product Panel */
.hoist-panel {
    display: none;
}

.hoist-panel.active {
    display: block;
    animation: hoistFadeIn 0.4s ease;
}

@keyframes hoistFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ======== INTERACTIVE IMAGE ======== */
.hoist-interactive {
    position: relative;
    margin-bottom: 50px;
    background: #fff;
    padding: 30px;
    box-shadow: 0 10px 60px rgba(0,0,0,0.08);
    border: 1px solid var(--border);
}



/* Subtle grid pattern */
.hoist-interactive::after {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 25px 25px;
    pointer-events: none;
    z-index: 0;
}

.hoist-interactive img {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    margin-top: 35px;
    z-index: 1;
}

/* Ensure hotspots are above grid */
.hoist-hotspot {
    z-index: 10;
}

/* Responsive */
@media (max-width: 768px) {
    .hoist-interactive {
        padding: 20px;
    }
    
    .hoist-interactive::before {
        font-size: 10px;
        padding: 10px 15px;
    }
    
    .hoist-interactive img {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .hoist-interactive {
        padding: 15px;
    }
    
    .hoist-interactive::before {
        font-size: 9px;
        letter-spacing: 1px;
    }
}

/* ======== HOTSPOT STYLES ======== */
.hoist-hotspot {
    position: absolute;
    width: 40px;
    height: 40px;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
}

.hoist-hotspot-dot {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hoist-hotspot-dot::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(255,233,0,0.5);
    z-index: 2;
    transition: transform 0.3s ease;
}

.hoist-hotspot:hover .hoist-hotspot-dot::before {
    transform: scale(1.2);
}

.hoist-hotspot-dot::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255,233,0,0.3);
    border-radius: 50%;
    animation: hoistPulse 2s ease-in-out infinite;
}

@keyframes hoistPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Black center dot */
.hoist-hotspot-center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.hoist-hotspot-center::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--dark);
    border-radius: 50%;
}

/* Hotspot Tooltip */
.hoist-hotspot-tooltip {
    position: absolute;
    bottom: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark);
    color: #fff;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.hoist-hotspot-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--dark);
}

.hoist-hotspot:hover .hoist-hotspot-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 20px);
}

/* ======== DESCRIPTION SECTION ======== */
.hoist-description {
    margin-bottom: 50px;
}

.hoist-description h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary);
    display: inline-block;
}

.hoist-description p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.hoist-description p:last-child {
    margin-bottom: 0;
}

/* ======== DUAL IMAGES ======== */
.hoist-dual-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 50px;
}

.hoist-dual-img {
    position: relative;
    overflow: hidden;
    background: var(--light-bg);
}

.hoist-dual-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.hoist-dual-img:hover img {
    transform: scale(1.05);
}

.hoist-dual-img figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

/* ======== FEATURES LIST ======== */
.hoist-features {
    margin-bottom: 50px;
    padding: 40px;
    background: var(--light-bg);
}

.hoist-features h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 25px;
}

.hoist-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.hoist-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: #fff;
    transition: all 0.3s ease;
}

.hoist-feature-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.hoist-feature-item i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--dark);
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.hoist-feature-item span {
    font-size: 14px;
    color: var(--dark);
    line-height: 1.5;
}

/* ======== SPECIFICATIONS TABLE ======== */
/* ======== SPECIFICATIONS TABLE ======== */
/* ======== SPECIFICATIONS TABLE ======== */
.hoist-specs {
    margin-bottom: 50px;
}

.hoist-specs h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 25px;
}

.hoist-table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--border);
}

.hoist-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.hoist-table thead {
    background: var(--primary);
}

/* Vertical header text - ALL SCREENS */
.hoist-table th {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    white-space: normal;
    word-wrap: break-word;
    vertical-align: middle;
    text-align: center;
    overflow: visible;
    line-height: 1.2;
    padding: 15px 5px;
    height: 180px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--dark);
    border-right: 1px solid rgb(0, 0, 0);
}


.hoist-table .eq th {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    white-space: normal;
    word-wrap: break-word;
    vertical-align: middle;
    text-align: center;
    overflow: visible;
    line-height: 1.2;
    padding: 15px 5px;
    height: 180px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--dark);
    border-right: 1px solid rgb(0, 0, 0);
}

.hoist-table th:last-child {
    border-right: none;
}

.hoist-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease;
}

.hoist-table tbody tr:hover {
    background: var(--light-bg);
}

.hoist-table tbody tr:last-child {
    border-bottom: none;
}

.hoist-table td {
    padding: 12px 8px;
    font-size: 13px;
    color: var(--dark);
    text-align: center;
    border-right: 1px solid var(--border);
}

.hoist-table td:last-child {
    border-right: none;
}

.hoist-table td:first-child {
    font-weight: 600;
    background: rgba(255,233,0,0.1);
}

/* Table Note */
.hoist-table-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
    padding: 15px 20px;
    background: rgba(255,233,0,0.1);
    border-left: 4px solid var(--primary);
}

.hoist-table-note i {
    color: var(--primary);
    font-size: 16px;
    margin-top: 2px;
}

.hoist-table-note p {
    font-size: 13px;
    color: var(--dark);
    line-height: 1.6;
}

/* ======== RESPONSIVE TABLE ======== */
@media (max-width: 992px) {
    .hoist-table-wrapper {
        overflow-x: hidden;
    }
    
    .hoist-table th {
        height: 160px;
        padding: 12px 3px;
        font-size: 9px;
    }
    
    .hoist-table td {
        padding: 8px 4px;
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .hoist-table th {
        height: 150px;
        padding: 10px 2px;
        font-size: 8px;
    }
    
    .hoist-table td {
        padding: 6px 3px;
        font-size: 9px;
    }
}

@media (max-width: 576px) {
    .hoist-table-wrapper {
        margin: 0 -20px;
        border-left: none;
        border-right: none;
    }
    
    .hoist-table th {
        height: 140px;
        padding: 8px 1px;
        font-size: 7px;
    }
    
    .hoist-table td {
        padding: 5px 2px;
        font-size: 8px;
    }
}

@media (max-width: 400px) {
    .hoist-table th {
        height: 120px;
        padding: 6px 1px;
        font-size: 6px;
    }
    
    .hoist-table td {
        padding: 4px 1px;
        font-size: 7px;
    }
}

/* Table Note */
.hoist-table-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
    padding: 15px 20px;
    background: rgba(255,233,0,0.1);
    border-left: 4px solid var(--primary);
}

.hoist-table-note i {
    color: var(--primary);
    font-size: 16px;
    margin-top: 2px;
}

.hoist-table-note p {
    font-size: 13px;
    color: var(--dark);
    line-height: 1.6;
}

/* Table Note */
.hoist-table-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
    padding: 15px 20px;
    background: rgba(255,233,0,0.1);
    border-left: 4px solid var(--primary);
}

.hoist-table-note i {
    color: var(--primary);
    font-size: 16px;
    margin-top: 2px;
}

.hoist-table-note p {
    font-size: 13px;
    color: var(--dark);
    line-height: 1.6;
}

/* ======== ADDITIONAL NOTES ======== */
.hoist-notes {
    padding: 30px;
    background: var(--dark);
}

.hoist-notes h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.hoist-notes ul {
    list-style: none;
}

.hoist-notes li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 12px;
}

.hoist-notes li:last-child {
    margin-bottom: 0;
}

.hoist-notes li i {
    color: var(--primary);
    margin-top: 4px;
}

/* ======== MOBILE TOGGLE ======== */
.hoist-mobile-toggle {
    display: none;
    width: 100%;
    padding: 15px 20px;
    background: var(--dark);
    color: #fff;
    border: none;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 30px;
}

.hoist-mobile-toggle i {
    margin-right: 10px;
    color: var(--primary);
}

/* Sidebar Overlay */
.hoist-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.hoist-overlay.active {
    display: block;
}

/* ======== RESPONSIVE DESIGN ======== */
/* Mobile table adjustments - all text vertical */
@media (max-width: 992px) {
    .hoist-table-wrapper {
        overflow-x: hidden;
    }
    
    .hoist-table {
        table-layout: fixed;
        width: 100%;
    }
    
    .hoist-table th,
    .hoist-table td {
        writing-mode: vertical-rl;
        text-orientation: mixed;
        transform: rotate(180deg);
        vertical-align: middle;
        text-align: center;
        overflow: visible;
    }
    
    .hoist-table th {
        white-space: normal;
        word-wrap: break-word;
        padding: 15px 3px;
        height: 220px;
        font-size: 9px;
        letter-spacing: 0;
        line-height: 1.2;
    }
    
    .hoist-table td {
        white-space: nowrap;
        padding: 10px 3px;
        height: 100px;
        font-size: 10px;
    }
    
    .hoist-table td:first-child {
        background: rgba(255,233,0,0.15);
        font-weight: 700;
    }
}

@media (max-width: 768px) {
    .hoist-table th {
        height: 200px;
        padding: 12px 2px;
        font-size: 8px;
    }
    
    .hoist-table td {
        padding: 8px 2px;
        height: 80px;
        font-size: 9px;
    }
}

@media (max-width: 576px) {
    .hoist-table-wrapper {
        margin: 0 -20px;
        border-left: none;
        border-right: none;
    }
    
    .hoist-table th {
        height: 180px;
        padding: 10px 1px;
        font-size: 7px;
    }
    
    .hoist-table td {
        padding: 6px 1px;
        height: 70px;
        font-size: 8px;
    }
}

@media (max-width: 400px) {
    .hoist-table th {
        height: 160px;
        padding: 8px 1px;
        font-size: 6px;
    }
    
    .hoist-table td {
        padding: 5px 1px;
        height: 60px;
        font-size: 7px;
    }
}
@media (max-width: 1200px) {
    .hoist-main {
        grid-template-columns: 250px 1fr;
        gap: 40px;
    }
    
    .hoist-hero h1 {
        font-size: 40px;
    }
}

@media (max-width: 992px) {
    .hoist-main {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .hoist-sidebar {
        position: fixed;
        top: 0;
        left: -300px;
        width: 300px;
        height: 100vh;
        background: #fff;
        z-index: 1000;
        padding: 30px;
        overflow-y: auto;
        transition: left 0.3s ease;
        box-shadow: 5px 0 30px rgba(0,0,0,0.2);
    }
    
    .hoist-sidebar.active {
        left: 0;
    }
    
    .hoist-sidebar-close {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hoist-mobile-toggle {
        display: flex;
        align-items: center;
    }
    
    .hoist-hero h1 {
        font-size: 34px;
    }
    
    .hoist-hero p {
        font-size: 15px;
    }
    
    .hoist-dual-images {
        grid-template-columns: 1fr;
    }
    
    .hoist-dual-img img {
        height: 250px;
    }
    
    .hoist-features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hoist-hero {
        padding: 100px 0 50px;
    }
    
    .hoist-hero h1 {
        font-size: 28px;
    }
    
    .hoist-main {
        padding: 40px 0 80px;
    }
    
    .hoist-description h2 {
        font-size: 24px;
    }
    
    .hoist-features {
        padding: 30px 20px;
    }
    
    .hoist-features h3,
    .hoist-specs h3 {
        font-size: 20px;
    }
    
    .hoist-hotspot {
        width: 36px;
        height: 36px;
    }
    
    .hoist-hotspot-dot::before {
        width: 14px;
        height: 14px;
    }
    
    .hoist-hotspot-dot::after {
        width: 36px;
        height: 36px;
    }
    
    .hoist-hotspot-center::before {
        width: 5px;
        height: 5px;
    }
}

@media (max-width: 576px) {
    .hoist-hero h1 {
        font-size: 24px;
    }
    
    .hoist-description h2 {
        font-size: 20px;
    }
    
    .hoist-feature-item {
        padding: 12px;
    }
    
    .hoist-table th,
    .hoist-table td {
        padding: 10px 8px;
        font-size: 11px;
    }
    
    .hoist-hotspot {
        width: 32px;
        height: 32px;
    }
    
    .hoist-hotspot-dot::before {
        width: 12px;
        height: 12px;
    }
    
    .hoist-hotspot-dot::after {
        width: 32px;
        height: 32px;
    }
    
    .hoist-hotspot-center::before {
        width: 4px;
        height: 4px;
    }
    
    .hoist-hotspot-tooltip {
        font-size: 11px;
        padding: 8px 12px;
    }
}


/* ======== EX-PROOF CTA BUTTON ======== */
.hoist-exproof-cta {
    margin-top: 40px;
}

.hoist-exproof-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    padding: 30px 40px;
    background: var(--dark);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--dark);
}

.hoist-exproof-btn:hover {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
}

.hoist-exproof-btn > i:first-child {
    font-size: 32px;
    color: var(--primary);
    transition: color 0.3s ease;
}

.hoist-exproof-btn:hover > i:first-child {
    color: var(--dark);
}

.hoist-exproof-btn span {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.hoist-exproof-btn strong {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hoist-exproof-btn small {
    font-size: 13px;
    opacity: 0.7;
    margin-top: 4px;
}

.hoist-exproof-btn > i:last-child {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.hoist-exproof-btn:hover > i:last-child {
    transform: translateX(8px);
}

/* Responsive */
@media (max-width: 768px) {
    .hoist-exproof-btn {
        padding: 25px 30px;
        gap: 15px;
    }
    
    .hoist-exproof-btn > i:first-child {
        font-size: 28px;
    }
    
    .hoist-exproof-btn strong {
        font-size: 16px;
    }
    
    .hoist-exproof-btn small {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .hoist-exproof-btn {
        padding: 20px;
        gap: 12px;
    }
    
    .hoist-exproof-btn > i:first-child {
        font-size: 24px;
    }
    
    .hoist-exproof-btn strong {
        font-size: 14px;
    }
    
    .hoist-exproof-btn small {
        font-size: 11px;
    }
    
    .hoist-exproof-btn > i:last-child {
        font-size: 14px;
    }
}





/* ======== ELEGANT SHOWCASE GALLERY ======== */
.ec-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.ec-showcase-item {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ec-showcase-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.ec-showcase-img {
    position: relative;
    overflow: hidden;
}

.ec-showcase-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.ec-showcase-item:hover .ec-showcase-img img {
    transform: scale(1.08);
}

.ec-showcase-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--dark);
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
}

.ec-showcase-info {
    padding: 25px 30px;
    border-top: 3px solid var(--primary);
}

.ec-showcase-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 8px;
}

.ec-showcase-info p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .ec-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ec-showcase-img img {
        height: 220px;
    }
}


/* ======== MOBILE SIDEBAR - STACKED ITEMS ======== */
@media (max-width: 992px) {
    .hoist-sidebar-menu {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    
    .hoist-sidebar-menu .hoist-menu-btn {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 16px 20px;
        font-size: 15px;
    }
}


/* ======== SIMPLE 2-COLUMN TABLE (HORIZONTAL TEXT) ======== */
.hoist-table-simple {
    width: 100%;
    border-collapse: collapse;
}

.hoist-table-simple thead {
    background: var(--primary);
}

.hoist-table-simple th {
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dark);
    text-align: left;
    border-bottom: 2px solid var(--dark);
}

.hoist-table-simple th:last-child {
    text-align: left;
}

.hoist-table-simple tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease;
}

.hoist-table-simple tbody tr:hover {
    background: rgba(255,233,0,0.08);
}

.hoist-table-simple tbody tr:last-child {
    border-bottom: none;
}

.hoist-table-simple td {
    padding: 14px 20px;
    font-size: 14px;
    color: var(--dark);
    text-align: left;
    vertical-align: middle;
}

.hoist-table-simple td:first-child {
    font-weight: 600;
    color: var(--dark);
    background: rgba(255,233,0,0.1);
    width: 40%;
}

/* Simple Table - Responsive (stays horizontal) */
@media (max-width: 768px) {
    .hoist-table-simple th,
    .hoist-table-simple td {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .hoist-table-simple td:first-child {
        width: 45%;
    }
}

@media (max-width: 576px) {
    .hoist-table-simple th,
    .hoist-table-simple td {
