.gp-container-f643c7d0 {
    font-family: inherit;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px;
    background: #FFD700; /* Default bright background */
}

.gp-item {
    border-bottom: 2px solid rgba(0,0,0,0.1);
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.gp-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.gp-accordion-header {
    background: rgba(255,255,255,0.7);
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 4px;
    transition: background 0.3s;
    border: 1px solid rgba(0,0,0,0.1);
}

.gp-accordion-header h4 {
    margin: 0;
    font-size: 1.1em;
    color: #333;
}

.gp-toggle-icon {
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
}

.gp-accordion-content {
    display: none;
    padding: 15px;
    background: rgba(255,255,255,0.9);
    border-radius: 0 0 4px 4px;
    border: 1px solid rgba(0,0,0,0.1);
    border-top: none;
}

.gp-item.gp-active .gp-accordion-content {
    display: block;
}

.gp-item.gp-active .gp-toggle-icon {
    transform: rotate(45deg);
}

.gp-included-label {
    cursor: help;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px;
    border-left: 3px solid #FF8C00; /* Accent color matching bright theme */
    font-size: 0.9em;
    color: #333;
}

.gp-options {
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #333;
    font-weight: 500;
}

.gp-qty {
    width: 60px;
    padding: 5px;
    margin-left: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.gp-item-total {
    font-weight: bold;
    font-size: 1.2em;
    text-align: right;
    margin-top: 10px;
    color: #111;
}