/* =========================================================
   LORRY CRANE
========================================================= */

section[data-name="elf_lorrycrane"] {
    position: relative;
    width: 100%;
    padding: 20px;
    overflow: hidden;
    background: #ffffff;
}

section[data-name="elf_lorrycrane"] * {
    box-sizing: border-box;
}

section[data-name="elf_lorrycrane"] .lorrycrane-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}


/* =========================================================
   SEARCH FORM
========================================================= */

section[data-name="elf_lorrycrane"] .formSearch {
    width: 100%;
    margin: 0 0 18px;
}


/* =========================================================
   TOOLBAR
========================================================= */

section[data-name="elf_lorrycrane"] .lorrycrane-toolbar {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16px;
}


/* =========================================================
   SEARCH ROW
========================================================= */

section[data-name="elf_lorrycrane"] .lorrycrane-search-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}

section[data-name="elf_lorrycrane"] .lorrycrane-search-wrap {
    width: 100%;
    max-width: 430px;
}

section[data-name="elf_lorrycrane"] .lorrycrane-search-box {
    position: relative;
    width: 100%;
    height: 52px;
}

section[data-name="elf_lorrycrane"] .lorrycrane-search-box input {
    display: block;
    width: 100%;
    height: 52px;
    margin: 0;
    padding: 0 64px 0 20px;
    border: 1px solid #dddddd;
    border-radius: 8px;
    outline: none;
    background: #ffffff;
    color: #333333;
    font-family: inherit;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.045);
    transition:
        border-color 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

section[data-name="elf_lorrycrane"] .lorrycrane-search-box input::placeholder {
    color: #999999;
    opacity: 1;
}

section[data-name="elf_lorrycrane"] .lorrycrane-search-box input:hover {
    border-color: #bdbdbd;
    background: #ffffff;
}

section[data-name="elf_lorrycrane"] .lorrycrane-search-box input:focus {
    border-color: #265728;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(38, 87, 40, 0.08);
}


/* =========================================================
   SEARCH BUTTON
========================================================= */

section[data-name="elf_lorrycrane"] .lorrycrane-search-box .btn-search {
    position: absolute;
    top: 5px;
    right: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 6px;
    outline: none;
    background: #265728;
    color: #ffffff;
    cursor: pointer;
    box-shadow: none;
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

section[data-name="elf_lorrycrane"] .lorrycrane-search-box .btn-search:hover {
    background: #333333;
    color: #ffffff;
    transform: translateY(-1px);
}

section[data-name="elf_lorrycrane"] .lorrycrane-search-box .btn-search:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(38, 87, 40, 0.12);
}

section[data-name="elf_lorrycrane"] .lorrycrane-search-box .btn-search svg {
    display: block;
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   FILTER ROW
========================================================= */

section[data-name="elf_lorrycrane"] .lorrycrane-filter-wrap {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    gap: 14px;
    width: 100%;
}


/* =========================================================
   FILTER WRAPPER
========================================================= */

section[data-name="elf_lorrycrane"] .lorrycrane-select-wrap {
    position: relative;
    width: 100%;
    min-width: 0;
}


/* =========================================================
   FILTER SELECT
========================================================= */

section[data-name="elf_lorrycrane"] .lorrycrane-select-wrap select {
    display: block;
    width: 100%;
    min-width: 0;
    height: 54px;
    margin: 0;
    padding: 0 48px 0 18px;
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #ffffff;
    color: #333333;
    font-family: inherit;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.035);
    transition:
        border-color 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease,
        color 0.25s ease;
}

section[data-name="elf_lorrycrane"] .lorrycrane-select-wrap select:hover {
    border-color: #265728;
    background: #fafafa;
    color: #333333;
    box-shadow: 0 5px 18px rgba(38, 87, 40, 0.06);
}

section[data-name="elf_lorrycrane"] .lorrycrane-select-wrap select:focus {
    border-color: #265728;
    background: #ffffff;
    color: #333333;
    box-shadow: 0 0 0 3px rgba(38, 87, 40, 0.08);
}

section[data-name="elf_lorrycrane"] .lorrycrane-select-wrap select option {
    background: #ffffff;
    color: #333333;
    font-size: 15px;
}


/* =========================================================
   FILTER ARROW
========================================================= */

section[data-name="elf_lorrycrane"] .lorrycrane-select-arrow {
    position: absolute;
    top: 50%;
    right: 19px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #265728;
    border-bottom: 2px solid #265728;
    pointer-events: none;
    transform: translateY(-70%) rotate(45deg);
}


/* =========================================================
   PMA REMARK
========================================================= */

section[data-name="elf_lorrycrane"] .lorrycrane-pma-remark {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    width: 100%;
    margin: 0 0 26px;
    color: #777777;
    font-size: 13px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
}

section[data-name="elf_lorrycrane"] .lorrycrane-pma-remark-mark {
    flex: 0 0 auto;
    color: #265728;
    font-style: normal;
}


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

section[data-name="elf_lorrycrane"] .lorrycrane-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 24px;
    width: 100%;
}


/* =========================================================
   CARD
========================================================= */

section[data-name="elf_lorrycrane"] .lorrycrane-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #f7f7f7;
    color: #333333;
    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

section[data-name="elf_lorrycrane"] .lorrycrane-card:hover {
    background: #cccccc;
    transform: translateY(-2px);
}

section[data-name="elf_lorrycrane"] .lorrycrane-card-link {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    width: 100%;
    height: 100%;
    color: #333333;
    text-decoration: none;
}


/* =========================================================
   CARD IMAGE
========================================================= */

section[data-name="elf_lorrycrane"] .lorrycrane-card-image-wrap {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #eeeeee;
}

section[data-name="elf_lorrycrane"] .lorrycrane-card-image {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: cover;
    transition: transform 0.45s ease;
}

section[data-name="elf_lorrycrane"] .lorrycrane-card:hover .lorrycrane-card-image {
    transform: scale(1.025);
}

section[data-name="elf_lorrycrane"] .lorrycrane-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #999999;
    font-size: 15px;
}


/* =========================================================
   CARD CONTENT
========================================================= */

section[data-name="elf_lorrycrane"] .lorrycrane-card-content {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
    padding: 15px 22px 14px;
    text-align: center;
}


/* =========================================================
   CARD TITLE
========================================================= */

section[data-name="elf_lorrycrane"] .lorrycrane-card-title {
    margin: 0 0 10px;
    padding: 0;
    color: #333333;
    font-size: 21px;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
}

section[data-name="elf_lorrycrane"] .lorrycrane-card-title:empty {
    display: none;
    margin: 0;
    padding: 0;
}


/* =========================================================
   CARD SPECIFICATIONS
========================================================= */

section[data-name="elf_lorrycrane"] .lorrycrane-card-specs {
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: left;
}

section[data-name="elf_lorrycrane"] .lorrycrane-card-spec {
    display: grid;
    grid-template-columns: minmax(175px, auto) minmax(0, 1fr);
    align-items: start;
    gap: 10px;
    width: 100%;
    margin: 0 0 5px;
    padding: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
}

section[data-name="elf_lorrycrane"] .lorrycrane-card-spec:last-child {
    margin-bottom: 0;
}

section[data-name="elf_lorrycrane"] .lorrycrane-card-spec-label {
    color: #265728;
    font-weight: 500;
    text-align: left;
}

section[data-name="elf_lorrycrane"] .lorrycrane-card-spec-value {
    min-width: 0;
    color: #333333;
    font-weight: 400;
    text-align: left;
    word-break: break-word;
}


/* =========================================================
   HIDE EMPTY SPECIFICATION
========================================================= */

section[data-name="elf_lorrycrane"] .lorrycrane-card-spec:has(
    .lorrycrane-card-spec-value:empty
) {
    display: none;
}

section[data-name="elf_lorrycrane"] .lorrycrane-card-spec:has(
    .lorrycrane-card-spec-label:empty
) {
    display: none;
}

section[data-name="elf_lorrycrane"] .lorrycrane-card-specs:empty {
    display: none;
    margin: 0;
    padding: 0;
}


/* =========================================================
   VIEW DETAILS
========================================================= */

section[data-name="elf_lorrycrane"] .lorrycrane-card-bottom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 12px;
    color: #265728;
    transition: color 0.3s ease;
}

section[data-name="elf_lorrycrane"] .lorrycrane-view-text {
    position: relative;
    font-size: 15px;
    font-weight: 400;
}

section[data-name="elf_lorrycrane"] .lorrycrane-view-text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: #265728;
    transition:
        width 0.3s ease,
        background-color 0.3s ease;
}

section[data-name="elf_lorrycrane"] .lorrycrane-view-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

section[data-name="elf_lorrycrane"] .lorrycrane-view-icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s ease;
}

section[data-name="elf_lorrycrane"] .lorrycrane-card:hover .lorrycrane-card-bottom {
    color: #333333;
}

section[data-name="elf_lorrycrane"] .lorrycrane-card:hover .lorrycrane-view-text::after {
    width: 100%;
    background: #333333;
}

section[data-name="elf_lorrycrane"] .lorrycrane-card:hover .lorrycrane-view-icon svg {
    transform: translateX(4px);
}


/* =========================================================
   LOADING
========================================================= */

section[data-name="elf_lorrycrane"] .lorrycrane-loading {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    min-height: 180px;
    color: #666666;
    font-size: 16px;
}

section[data-name="elf_lorrycrane"] .lorrycrane-spinner {
    display: block;
    width: 20px;
    height: 20px;
    border: 2px solid #dddddd;
    border-top-color: #265728;
    border-radius: 50%;
    animation: lorrycraneSpin 0.7s linear infinite;
}

@keyframes lorrycraneSpin {
    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   NO RESULT
========================================================= */

section[data-name="elf_lorrycrane"] .no-result {
    grid-column: 1 / -1;
    width: 100%;
    padding: 40px 25px;
    background: #f7f7f7;
    color: #333333;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}


/* =========================================================
   PAGINATION
========================================================= */

section[data-name="elf_lorrycrane"] .wrapper_pagination {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 20px;
}

section[data-name="elf_lorrycrane"] .page-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

section[data-name="elf_lorrycrane"] .page-pagination .page-item {
    margin: 0;
    padding: 0;
    list-style: none;
}

section[data-name="elf_lorrycrane"] .page-pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    border: 1px solid #dddddd;
    background: #f7f7f7;
    color: #333333;
    font-size: 15px;
    text-decoration: none;
}

section[data-name="elf_lorrycrane"] .page-pagination .page-link:hover {
    background: #cccccc;
    border-color: #cccccc;
}

section[data-name="elf_lorrycrane"] .page-pagination .page-item.active .page-link {
    background: #265728;
    border-color: #265728;
    color: #ffffff;
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1200px) {

    section[data-name="elf_lorrycrane"] .lorrycrane-filter-wrap {
        gap: 12px;
    }

    section[data-name="elf_lorrycrane"] .lorrycrane-select-wrap select {
        padding-left: 15px;
        padding-right: 42px;
        font-size: 14px;
    }

    section[data-name="elf_lorrycrane"] .lorrycrane-select-arrow {
        right: 16px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    section[data-name="elf_lorrycrane"] .lorrycrane-toolbar {
        gap: 14px;
    }

    section[data-name="elf_lorrycrane"] .lorrycrane-search-row {
        justify-content: stretch;
    }

    section[data-name="elf_lorrycrane"] .lorrycrane-search-wrap {
        max-width: 100%;
    }

    section[data-name="elf_lorrycrane"] .lorrycrane-filter-wrap {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    section[data-name="elf_lorrycrane"] .lorrycrane-select-wrap select {
        font-size: 15px;
    }

    section[data-name="elf_lorrycrane"] .lorrycrane-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
    }

    section[data-name="elf_lorrycrane"] .lorrycrane-card-spec {
        grid-template-columns: minmax(175px, auto) minmax(0, 1fr);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    section[data-name="elf_lorrycrane"] {
        padding: 40px 20px;
    }

    section[data-name="elf_lorrycrane"] .formSearch {
        margin-bottom: 14px;
    }

    section[data-name="elf_lorrycrane"] .lorrycrane-toolbar {
        gap: 12px;
    }

    section[data-name="elf_lorrycrane"] .lorrycrane-search-box {
        height: 50px;
    }

    section[data-name="elf_lorrycrane"] .lorrycrane-search-box input {
        height: 50px;
        padding: 0 58px 0 15px;
        border-radius: 7px;
        font-size: 15px;
    }

    section[data-name="elf_lorrycrane"] .lorrycrane-search-box .btn-search {
        top: 4px;
        right: 4px;
        width: 42px;
        height: 42px;
        border-radius: 5px;
    }

    section[data-name="elf_lorrycrane"] .lorrycrane-filter-wrap {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    section[data-name="elf_lorrycrane"] .lorrycrane-select-wrap select {
        width: 100%;
        min-width: 0;
        height: 50px;
        padding: 0 40px 0 14px;
        border-radius: 7px;
        font-size: 14px;
    }

    section[data-name="elf_lorrycrane"] .lorrycrane-select-arrow {
        right: 15px;
    }

    section[data-name="elf_lorrycrane"] .lorrycrane-pma-remark {
        margin-bottom: 22px;
        font-size: 12px;
    }

    section[data-name="elf_lorrycrane"] .lorrycrane-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    section[data-name="elf_lorrycrane"] .lorrycrane-card-content {
        min-height: 0;
        padding: 15px 18px 14px;
    }

    section[data-name="elf_lorrycrane"] .lorrycrane-card-title {
        margin-bottom: 10px;
        font-size: 20px;
    }

    section[data-name="elf_lorrycrane"] .lorrycrane-card-spec {
        grid-template-columns: minmax(165px, auto) minmax(0, 1fr);
        gap: 8px;
        margin-bottom: 5px;
        font-size: 14px;
    }

    section[data-name="elf_lorrycrane"] .lorrycrane-card-bottom {
        margin-top: 12px;
        padding-top: 0;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    section[data-name="elf_lorrycrane"] {
        padding: 35px 16px;
    }

    section[data-name="elf_lorrycrane"] .lorrycrane-filter-wrap {
        grid-template-columns: 1fr;
    }

    section[data-name="elf_lorrycrane"] .lorrycrane-select-wrap select {
        height: 50px;
        font-size: 14px;
    }

    section[data-name="elf_lorrycrane"] .lorrycrane-card-spec {
        grid-template-columns: 1fr;
        gap: 1px;
        margin-bottom: 8px;
    }

    section[data-name="elf_lorrycrane"] .lorrycrane-card-spec-label,
    section[data-name="elf_lorrycrane"] .lorrycrane-card-spec-value {
        text-align: left;
    }
}