/* --- Equipment Page Enhanced Styles --- */
.equipment-hero {
    width: 100%;
    background: #f5efe7;
    position: relative;
    height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.equipment-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    background: url('images/js-hero-banner-2.jpg') center center/cover no-repeat, #f5efe7;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.equipment-hero-title {
    position: relative;
    z-index: 2;
    color: #fff;
    font-family: 'Noto Serif TC', serif;
    font-size: 2.8em;
    font-weight: bold;
    text-shadow: 0 2px 16px rgba(80,60,10,0.15);
    letter-spacing: 2px;
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.equipment-hero-bg::before {
    content: '';
    position: absolute;
    left: 0; top: 0; right: 0; bottom: 0;
    background: rgba(32,32,32,0.38);
    z-index: 1;
    pointer-events: none;
}

.equipment-hero-title {
    z-index: 2;
    width: 100%;
}

.equipment-block.equipment-new-layout {
    display: flex;
    align-items: flex-start;
    gap: 3em;
    background: #fff;
    border-radius: 2em;
    box-shadow: 0 4px 24px rgba(163, 129, 40, 0.06);
    padding: 3em 2.5em;
    margin-bottom: 2em;
    margin-top: 2em;
}

.equipment-img-block {
    flex: 0 0 216px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.equipment-img-square {
    width: 240px;
    height: 240px;
    object-fit: cover;
    border-radius: 2.2em;
    border: 5px solid #f3e3c1;
    background: #f9f8f5;
    box-shadow: 0 2px 12px rgba(163,129,40,0.09);
    transition: transform 0.25s;
}

.equipment-img-square:hover {
    transform: scale(1.03);
}

.equipment-content-block {
    flex: 1 1 320px;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.equipment-title {
    color: #a38128;
    font-family: 'Noto Serif TC', serif;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 1.1em;
    letter-spacing: 2px;
    text-align: left;
    line-height: 1.2;
}

.equipment-desc {
    color: #fff;
    font-size: 1.03em;
    line-height: 1.7;
    text-align: left;
}

.equipment-highlight {
    background: #a38128;
    padding: 1em 1.3em;
    border-radius: 0.7em;
    margin-bottom: 1em;
    font-size: 1.07em;
    color: #fff;
}

.equipment-features {
    margin-top: 1em;
    margin-left: 1.1em;
    color: #a38128;
    font-size: 1.07em;
    font-family: 'Noto Serif TC', serif;
    line-height: 1.6;
    list-style-type: disc;
    text-align: left;
    margin-bottom: 0.5em;
}

/* --- CO2 Section Custom --- */
.co2-accordion {
    width: 100%;
}

.co2-panel {
    margin-bottom: 1em;
}

.co2-section-title {
    background: #a38128;
    color: #fff;
    border-radius: 0.7em;
    padding: 1em 1.5em;
    font-size: 1.18em;
    font-family: 'Noto Serif TC', serif;
    font-weight: bold;
    margin-bottom: 0;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    width: 100%;
    border: none;
    cursor: pointer;
    outline: none;
    transition: background 0.2s;
    box-sizing: border-box;
    justify-content: flex-start;
    position: relative;
}

.co2-section-title:hover {
    background: #c6a34e;
}

.co2-toggle-icon {
    display: inline-block;
    font-size: 1.5em;
    margin-right: 1em;
    transition: transform 0.2s;
    font-family: inherit;
}

.co2-panel-content {
    background: #f5efe7;
    border-radius: 0.7em;
    padding: 1.1em 1.5em 0.7em 1.5em;
    margin-top: 0.2em;
    color: #4a3d16;
    width: 100%;
    box-sizing: border-box;
    animation: co2PanelFadeIn 0.22s;
}

@keyframes co2PanelFadeIn {
    from { opacity: 0; transform: translateY(-6px);}
    to { opacity: 1; transform: translateY(0);}
}

.co2-sub-title {
    color: #a38128;
    font-weight: bold;
    font-size: 1.02em;
    margin-bottom: 0.21em;
    margin-top: 0.55em;
    font-family: 'Noto Serif TC', serif;
}

.co2-features {
    margin-top: 0.4em !important;
    margin-bottom: 0.3em !important;
    line-height: 1.55 !important;
}

.co2-subsection p {
    margin-top: 0.15em;
    margin-bottom: 0.15em;
    line-height: 1.65;
}

@media (max-width: 900px) {
    .equipment-block.equipment-new-layout {
        flex-direction: column;
        gap: 2em;
        padding: 2em 1em;
    }
    .equipment-img-block {
        justify-content: center;
        width: 100%;
    }
    .equipment-img-square {
        margin: 0 auto;
    }
    .equipment-title {
        text-align: center;
        font-size: 1.3em;
    }
    .equipment-features {
        text-align: left;
    }
    .co2-section-title {
        font-size: 1em;
        padding: 0.7em 1em;
    }
    .co2-panel-content {
        padding: 0.7em 1em 0.5em 1em;
    }
}