.alprice_crumb {
    top: 110px;
}

.alprice_crumb,
.alprice_crumb li,
.alprice_crumb li a {
    color: #808080;
    font-size: 16px;
    line-height: 1.2;
}

.alprice_crumb li a:hover {
    color: #0148a1;
}

@media (max-width: 1200px) {
    .alprice_crumb {
        top: 102px;
    }

    .alprice_crumb,
    .alprice_crumb li,
    .alprice_crumb li a {
        font-size: 15px;
    }
}

@media (max-width: 992px) {
    .alprice_crumb {
        top: 94px;
    }

    .alprice_crumb,
    .alprice_crumb li,
    .alprice_crumb li a {
        font-size: 14px;
        color: #707070;
    }
}

@media (max-width: 768px) {
    .alprice_crumb {
        top: 78px;
    }

    .alprice_crumb,
    .alprice_crumb li,
    .alprice_crumb li a {
        font-size: 13px;
        color: #666666;
    }
}

@media (max-width: 480px) {
    .alprice_crumb {
        top: 72px;
    }

    .alprice_crumb,
    .alprice_crumb li,
    .alprice_crumb li a {
        font-size: 12px;
    }
}

body {
    background-color: #f5f7fa;
}

.aluminum-price-main {
    max-width: 1200px;
    margin: 80px auto 40px;
    font-family: 'Hind-Regular', sans-serif;
    color: #333;
}

.alprice-header-h1 {
    font-size: 40px;
    color: #201e1e;
    margin-bottom: 10px;
    line-height: 1.2;
    font-family: 'Hind', sans-serif;
}

.alprice-header-p {
    font-size: 16px;
    color: #201e1e;
    line-height: 1.7;
    font-family: 'Hind-Light', sans-serif;
}

.alprice-section {
    background: #fff;
    border-radius: 9px;
    padding: 28px;
    margin-bottom: 32px;
    margin-top: 60px;
    box-shadow: 1px 1px 9px 0px rgba(49, 103, 225, 0.2);
}

.alprice-section h2 {
    font-size: 30px;
    color: #201e1e;
    margin-bottom: 25px;
    font-family: 'Hind', sans-serif;
}

.benchmark-cards {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.benchmark-card {
    flex: 1;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 14px;
    border: solid 1px #bad0da;
    transition: border-color 0.3s ease;
}

.benchmark-card:hover {
    border-color: #3167e1;
}

.benchmark-card h3 {
    font-size: 20px;
    color: #201e1e;
    margin-bottom: 20px;
    line-height: 1.35;
    font-family: 'Hind', sans-serif;
}

.price-val {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 5px;
}

.price-num {
    font-size: 40px;
    color: #201e1e;
    font-weight: 600;
    font-family: 'Hind', sans-serif;
    line-height: 1;
}

.trend-icon {
    width: 34px;
    height: 22px;
}

.trend-icon.up {
    color: #e53e3e;
}

.trend-icon.down {
    color: #38a169;
}

.price-unit {
    font-size: 18px;
    color: #201e1e;
    line-height: 1.4;
    font-family: 'Hind', sans-serif;
    margin-top: 4px;
    margin-bottom: 28px;
}

.price-change {
    margin-bottom: 10px;
    margin-top: 0;
    font-family: 'Hind', sans-serif;
}

.change-amt {
    color: #191919;
    margin-right: 5px;
    font-size: 18px;

}

.change-pct.up {
    color: #ff1717;
    font-size: 16px;
}

.change-pct.down {
    color: #38a169;
    font-size: 16px;
}

.price-date {
    font-size: 15px;
    color: #201e1e;
    line-height: 1.5;
    margin: 0;
    font-family: 'Hind-Light', sans-serif;
}

.benchmark-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #666666;
    font-style: italic;
    margin: 0;
    font-family: 'Hind-Light', sans-serif;
}

.benchmark-note .note-icon {
    width: 15px;
    height: 15px;
    position: relative;
    top: -3px;
}

/* Chart Section */
.chart-section {
    padding: 30px;
}

.chart-header {
    margin-bottom: 20px;
}

.chart-title {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
}

.chart-controls-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.chart-series-toggles,
.chart-time-toggles {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.chart-btn {
    padding: 6px 20px;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #ffffff;
    color: #3a4f62;
    border: 1px solid #898989;
    font-family: 'Hind-Medium', sans-serif;
}

.chart-btn:hover {
    border-color: #3167e1;
    color: #3167e1;
}

.chart-btn.active {
    color: #ffffff;
    background-color: #3167e1;
    border: none;
}

.custom-date-range {
    display: flex;
    align-items: center;
    border: 1px solid #898989;
    border-radius: 6px;
    padding: 2px 6px;
    gap: 2px;
    background: #ffffff;
    font-family: 'Hind-Medium', sans-serif;
    font-size: 16px;
}

.date-input-wrapper {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.date-input {
    border: none;
    outline: none;
    font-size: 16px;
    color: #33495d;
    background: transparent;
    font-family: 'Hind-Medium', sans-serif;
    cursor: pointer;
    position: relative;
    z-index: 1;
    width: 96px;
    height: 30px;
    line-height: 30px;
    padding: 2px 0 0;
    box-sizing: border-box;
    text-align: center;
}


.date-separator {
    color: #33495d;
    font-family: 'Hind-Medium', sans-serif;
    font-size: 16px;
}

.flatpickr-calendar,
.flatpickr-calendar * {
    font-family: 'Hind-Medium', sans-serif;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year,
.flatpickr-day {
    font-size: 14px;
}

.chart-static-legend {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    margin-top: 12px;
}

.legend-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.legend-item img {
    width: 36px;
    height: 10px;
    object-fit: contain;
    display: block;
}

.legend-item em {
    font-style: normal;
    color: #415568;
    font-size: 14px;
    font-family: 'Hind-Medium', sans-serif;
}

.echarts-container {
    margin-top: 12px;
}

.faq-section {
    padding: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    margin-top: 120px;
}

.faq-title {
    text-align: center;
    margin-bottom: 6px;
}

.faq-subtitle {
    text-align: center;
    font-size: 16px;
    color: #201e1e;
    margin: 0 0 34px;
    font-family: 'Hind-Light', sans-serif;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 0;
    border-radius: 0;
    background: transparent;
    margin-bottom: 20px;
    overflow: visible;
    box-shadow: 1px 1px 18px 0px rgba(49, 103, 225, 0.1);
    background: #ffffff;
    border-radius: 6px;
}

.faq-question {
    margin: 0;
    font-size: 18px;
}

.faq-trigger {
    width: 100%;
    margin: 0;
    border: solid 1px #7289bc;
    border-radius: 6px;
    color: #201e1e;
    text-align: left;
    padding: 12px 18px;
    font-family: 'Hind', sans-serif;
    font-weight: normal;
    line-height: 1.45;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
}

.faq-icon {
    width: 12px;
    height: 12px;
    position: relative;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-icon::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(0, 27, 52, 0.5);
    border-bottom: 2px solid rgba(0, 27, 52, 0.5);
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.faq-item.is-open .faq-icon {
    transform: rotate(-180deg);
}

.faq-panel {
    display: none;
    padding: 16px 18px 18px;
}

.faq-answer {
    margin: 0;
    font-size: 16px;
    line-height: 1.65;
    color: #555353;
    font-family: 'Hind-Light', sans-serif;
}

@media (max-width: 1200px) {
    .aluminum-price-main {
        max-width: 100%;
        padding: 0 20px;
    }

    .benchmark-card {
        padding: 24px;
    }
}

@media (max-width: 992px) {
    .chart-controls-wrapper {
        gap: 12px;
    }

    .chart-btn {
        padding: 5px 14px;
        font-size: 14px;
    }

    .chart-series-toggles,
    .chart-time-toggles {
        gap: 8px;
    }

    .custom-date-range {
        gap: 2px;
        padding: 4px 6px;
    }

    .date-input {
        width: 90px;
        height: 28px;
        line-height: 28px;
        font-size: 14px;
    }

    .alprice-header-h1 {
        font-size: 34px;
    }

    .alprice-section h2 {
        font-size: 28px;
    }

    .benchmark-cards {
        gap: 14px;
    }

    .benchmark-card h3 {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .price-num {
        font-size: 34px;
    }

    .price-unit {
        font-size: 16px;
        margin-bottom: 22px;
    }

    .change-amt {
        font-size: 16px;
    }

    .change-pct.up,
    .change-pct.down,
    .price-date,
    .benchmark-note {
        font-size: 14px;
    }

    .faq-section {
        padding: 10px 0;
    }

    .faq-subtitle {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .faq-trigger {
        padding: 14px 16px;
    }

    .faq-question {
        font-size: 18px;
        line-height: 1.4;
    }

    .faq-answer {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 0px;
    }

    .chart-controls-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .chart-series-toggles,
    .chart-time-toggles {
        width: 100%;
        justify-content: flex-start;
    }

    .chart-btn {
        flex: 1;
        text-align: center;
        padding: 6px 10px;
        font-size: 13px;
    }

    .custom-date-range {
        width: 100%;
        justify-content: space-between;
        padding: 3px 8px;
    }

    .date-input {
        width: auto;
        flex: 1;
    }

    .chart-static-legend {
        gap: 16px;
        margin-top: 20px;
    }

    .legend-item em {
        font-size: 13px;
    }

    .aluminum-price-main {
        margin: 72px auto 28px;
        padding: 0 14px;
    }

    .alprice-header-h1 {
        font-size: 30px;
        margin-bottom: 8px;
    }

    .alprice-header-p {
        font-size: 16px;
    }

    .alprice-section {
        margin-top: 28px;
        margin-bottom: 24px;
        padding: 18px;
        border-radius: 14px;
    }

    .alprice-section h2 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .benchmark-cards {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 16px;
    }

    .benchmark-card {
        padding: 18px;
        border-radius: 12px;
    }

    .price-val {
        gap: 14px;
        margin-bottom: 2px;
    }

    .price-num {
        font-size: 30px;
    }

    .trend-icon {
        width: 26px;
        height: 17px;
    }

    .price-unit {
        margin-bottom: 16px;
    }

    .benchmark-note {
        align-items: flex-start;
    }

    .benchmark-note .note-icon {
        top: 0;
        margin-top: 3px;
        flex-shrink: 0;
    }

    .faq-section {
        padding: 10px 0;
    }

    .faq-title {
        font-size: 26px;
        margin-bottom: 8px;
    }

    .faq-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .faq-item {
        margin-bottom: 12px;
    }

    .faq-trigger {
        padding: 14px 14px;
        gap: 12px;
        border-radius: 4px;
    }

    .faq-question {
        font-size: 16px;
        line-height: 1.4;
    }

    .faq-panel {
        padding: 0 14px 14px;
    }

    .faq-answer {
        font-size: 15px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .aluminum-price-main {
        padding: 0 20px;
    }

    .alprice-header-h1 {
        font-size: 28px;
    }

    .alprice-header-p {
        font-size: 16px;
        line-height: 1.6;
    }

    .alprice-section h2 {
        font-size: 22px;
    }

    .benchmark-card h3 {
        font-size: 17px;
    }

    .price-num {
        font-size: 28px;
    }

    .price-unit {
        font-size: 15px;
    }

    .change-amt {
        font-size: 15px;
    }

    .change-pct.up,
    .change-pct.down,
    .price-date,
    .benchmark-note {
        font-size: 14px;
    }

    .benchmark-note .note-icon {
        width: 14px;
        height: 14px;
    }

    .faq-trigger {
        padding: 12px 18px;
        border-radius: 4px;
    }

    .faq-question {
        font-size: 15px;
        line-height: 1.4;
    }

    .faq-panel {
        padding: 0 12px 12px;
    }

    .faq-answer {
        font-size: 14px;
    }

    .faq-icon {
        width: 10px;
        height: 10px;
    }

    .faq-icon::before {

        width: 8px;
        height: 8px;

        top: -2px;

        border-right: 1px solid rgba(0, 27, 52, 0.5);
        border-bottom: 1px solid rgba(0, 27, 52, 0.5);

    }
}