/* VOUCHER BOX */

.product-voucher-box {
    background: #fff7e6;
    border: 1px dashed #ffb703;
    border-radius: 10px;
    margin: 6px 0 14px auto;
    padding: 6px 10px;
    width: 100%;
    width: fit-content;
}

/* HEADER */

.voucher-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.voucher-text {
    font-size: 13px;
    font-weight: 500;
}

.voucher-toggle {
    border: 1px solid #ffb703;
    background: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    cursor: pointer;
}

/* BODY */

.voucher-body {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-around;
}

.product-voucher-box.is-open .voucher-body {
    display: block;
}

/* MAIN LINE */

.voucher-main-line {
    font-size: 13px;
}

/* CODE */

.voucher-code-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.voucher-code, .voucher-copy-btn {
    background: #fff;
    border: 1px solid #ddd;
    padding: 6px 12px;
    font-weight: 700;
    border-radius: 5px;
}

.voucher-copy-btn svg {
    width: 18px;
    height: 18px;
}

/* EXPIRY */

.voucher-expiry-countdown {
    font-size: 12px;
    color: #666;
    margin-top: 6px;
}


.expert-guide-accordion {
    margin: 10px 0;
    border-bottom: 1px solid #009688;

}

.expert-guide-header {
    width: 100%;
    background: none;
    border: 0;
    padding: 14px 0;
    font-weight: bold;
    font-size: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.expert-guide-accordion p {
    color: #3F3F3F;
    line-height: 30px;
}

.accordion-icon {
    font-size: 20px;
    line-height: 1;
}

/* Chevron icon */
.expert-guide-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor: pointer;
}

.expert-guide-header .chevron {
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg); /* points down-right */
    transition: transform 0.3s ease;
    margin-left: 10px;
}

/* Rotate when open */
.expert-guide-header[aria-expanded="true"] .chevron {
    transform: rotate(-135deg); /* points up */
}