/* WRAPPER */
.wcgp-box {
    margin: 20px 0 30px; /* bottom spacing added */
}

/* BUTTON */
.wcgp-toggle {
    width: 100%;
    background: #d4af37; /* gold color like reference */
    color: #fff;
    padding: 10px 14px; /* reduced height */
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    border-radius: 2px;
}

/* BUTTON HOVER */
.wcgp-toggle:hover {
    background: #c29d2f;
}

/* CONTENT */
.wcgp-content {
    display: none;
    margin-top: 20px;
    margin-bottom: 20px; /* spacing below table */
    text-align: center;
}

.wcgp-content.active {
    display: block;
}

/* ROW */
.wcgp-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0; /* reduced spacing */
    max-width: 420px;
    margin: 0 auto;
    font-size: 15px;
}

/* LABEL */
.wcgp-row span {
    color: #666;
    font-weight: 500;
}

/* VALUE */
.wcgp-row strong {
    color: #444;
}

/* GOLD HIGHLIGHT VALUES */
.wcgp-row .highlight {
    color: #d4af37;
    font-weight: 600;
}

/* FINAL PRICE */
.wcgp-row.final {
    margin-top: 10px;
    font-size: 17px;
}

.wcgp-row.final strong {
    color: #d4af37;
    font-weight: bold;
}